Ignore:
File:
1 edited

Legend:

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

    ra9bf505 r6b33e89  
    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;                                                                         // "last" overloaded in scope => qualification
     487        this.last = 0p;
    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.