- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel/startup.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/startup.cfa
ra9bf505 r6b33e89 474 474 //----------------------------------------------------------------------------- 475 475 // Main thread construction 476 static void ?{}( coroutine$ & this, current_stack_info_t * info ) with( this ) {476 static void ?{}( coroutine$ & this, current_stack_info_t * info) with( this ) { 477 477 stack.storage = info->storage; 478 478 with(*stack.storage) { … … 485 485 state = Start; 486 486 starter = 0p; 487 this.last = 0p; // "last" overloaded in scope => qualification487 this.last = 0p; 488 488 cancellation = 0p; 489 489 ehm_state.ehm_buffer{}; … … 492 492 } 493 493 494 static void ?{}( thread$ & this, current_stack_info_t * info ) with( this ) {494 static void ?{}( thread$ & this, current_stack_info_t * info) with( this ) { 495 495 ticket = TICKET_RUNNING; 496 496 state = Start;
Note:
See TracChangeset
for help on using the changeset viewer.