Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/invoke.h

    r76e069f rafc2427  
    8080
    8181        struct coroutine_desc {
    82                 // stack information of the coroutine
    83                 struct coStack_t stack;
    84 
    85                 // textual name for coroutine/task, initialized by uC++ generated code
    86                 const char * name;
    87 
    88                 // copy of global UNIX variable errno
    89                 int errno_;
    90 
    91                 // current execution status for coroutine
    92                 enum coroutine_state state;
    93                 // first coroutine to resume this one
    94                 struct coroutine_desc * starter;
    95 
    96                 // last coroutine to resume this one
    97                 struct coroutine_desc * last;
    98 
    99                 // If non-null stack must be unwound with this exception
    100                 struct _Unwind_Exception * cancellation;
    101 
    102         };
    103 
    104         // struct which calls the monitor is accepting
     82                struct coStack_t stack;                                                 // stack information of the coroutine
     83                const char * name;                                                              // textual name for coroutine/task, initialized by uC++ generated code
     84                int errno_;                                                                             // copy of global UNIX variable errno
     85                enum coroutine_state state;                                             // current execution status for coroutine
     86                struct coroutine_desc * starter;                                // first coroutine to resume this one
     87                struct coroutine_desc * last;                                   // last coroutine to resume this one
     88        };
     89
    10590        struct __waitfor_mask_t {
    10691                // the index of the accepted function, -1 if none
Note: See TracChangeset for help on using the changeset viewer.