Changeset 2cbfe92 for libcfa/src
- Timestamp:
- Feb 20, 2020, 4:08:11 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- b7d6a36, c744563a
- Parents:
- e59e663 (diff), 4783ff6 (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/thread.cfa
re59e663 r2cbfe92 77 77 void __thrd_start( T & this, void (*main_p)(T &) ) { 78 78 thread_desc * this_thrd = get_thread(this); 79 thread_desc * curr_thrd = TL_GET( this_thread );80 79 81 80 disable_interrupts(); … … 84 83 this_thrd->context.[SP, FP] = this_thrd->self_cor.context.[SP, FP]; 85 84 verify( this_thrd->context.SP ); 86 // CtxSwitch( &curr_thrd->context, &this_thrd->context );87 85 88 86 ScheduleThread(this_thrd);
Note: See TracChangeset
for help on using the changeset viewer.