Ignore:
Timestamp:
Mar 1, 2026, 5:53:56 PM (24 hours ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
c25202b
Parents:
e0d90b2
Message:

formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/kernel/startup.cfa

    re0d90b2 ra9bf505  
    474474//-----------------------------------------------------------------------------
    475475// Main thread construction
    476 static void ?{}( coroutine$ & this, current_stack_info_t * info) with( this ) {
     476static void ?{}( coroutine$ & this, current_stack_info_t * info ) with( this ) {
    477477        stack.storage = info->storage;
    478478        with(*stack.storage) {
     
    485485        state = Start;
    486486        starter = 0p;
    487         this.last = 0p;
     487        this.last = 0p;                                                                         // "last" overloaded in scope => qualification
    488488        cancellation = 0p;
    489489        ehm_state.ehm_buffer{};
     
    492492}
    493493
    494 static void ?{}( thread$ & this, current_stack_info_t * info) with( this ) {
     494static void ?{}( thread$ & this, current_stack_info_t * info ) with( this ) {
    495495        ticket = TICKET_RUNNING;
    496496        state = Start;
Note: See TracChangeset for help on using the changeset viewer.