Changes in / [2cbfe92:e59e663]
- File:
-
- 1 edited
-
libcfa/src/concurrency/thread.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/thread.cfa
r2cbfe92 re59e663 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 ); 79 80 80 81 disable_interrupts(); … … 83 84 this_thrd->context.[SP, FP] = this_thrd->self_cor.context.[SP, FP]; 84 85 verify( this_thrd->context.SP ); 86 // CtxSwitch( &curr_thrd->context, &this_thrd->context ); 85 87 86 88 ScheduleThread(this_thrd);
Note:
See TracChangeset
for help on using the changeset viewer.