Changeset a9bf505
- Timestamp:
- Mar 1, 2026, 5:53:56 PM (14 hours ago)
- Branches:
- master
- Children:
- c25202b
- Parents:
- e0d90b2
- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel/startup.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/startup.cfa
re0d90b2 ra9bf505 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; 487 this.last = 0p; // "last" overloaded in scope => qualification 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.