Changeset cfff639 for libcfa/src/concurrency/kernel/startup.cfa
- Timestamp:
- Apr 24, 2021, 7:45:02 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- fb0be05
- Parents:
- 89eff25 (diff), 254ad1b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/startup.cfa
r89eff25 rcfff639 225 225 // Add the main thread to the ready queue 226 226 // once resume is called on mainProcessor->runner the mainThread needs to be scheduled like any normal thread 227 __schedule_thread(mainThread);227 schedule_thread$(mainThread); 228 228 229 229 // SKULLDUGGERY: Force a context switch to the main processor to set the main thread's context to the current UNIX … … 238 238 239 239 /* paranoid */ verify( ! __preemption_enabled() ); 240 enable_interrupts( __cfaabi_dbg_ctx);240 enable_interrupts(); 241 241 /* paranoid */ verify( __preemption_enabled() ); 242 242 … … 532 532 disable_interrupts(); 533 533 init( this, name, _cltr, initT ); 534 enable_interrupts( __cfaabi_dbg_ctx);534 enable_interrupts(); 535 535 536 536 __cfadbg_print_safe(runtime_core, "Kernel : Starting core %p\n", &this); … … 559 559 disable_interrupts(); 560 560 deinit( this ); 561 enable_interrupts( __cfaabi_dbg_ctx);561 enable_interrupts(); 562 562 } 563 563 … … 597 597 // Unlock the RWlock 598 598 ready_mutate_unlock( last_size ); 599 enable_interrupts _noPoll(); // Don't poll, could be in main cluster599 enable_interrupts( false ); // Don't poll, could be in main cluster 600 600 } 601 601 … … 612 612 // Unlock the RWlock 613 613 ready_mutate_unlock( last_size ); 614 enable_interrupts _noPoll(); // Don't poll, could be in main cluster614 enable_interrupts( false ); // Don't poll, could be in main cluster 615 615 616 616 #if !defined(__CFA_NO_STATISTICS__)
Note: See TracChangeset
for help on using the changeset viewer.