Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/coroutine

    rde6319f rb10affd  
    3232//-----------------------------------------------------------------------------
    3333// Ctors and dtors
    34 // void ?{}( coStack_t & this );
    35 // void ^?{}( coStack_t & this );
    36 
    37 void ?{}( coroutine_desc & this, const char * name, void * storage, size_t storageSize );
    38 void ^?{}( coroutine_desc & this );
    39 
    40 static inline void ?{}( coroutine_desc & this)                                       { this{ "Anonymous Coroutine", NULL, 0 }; }
    41 static inline void ?{}( coroutine_desc & this, size_t stackSize)                     { this{ "Anonymous Coroutine", NULL, stackSize }; }
    42 static inline void ?{}( coroutine_desc & this, void * storage, size_t storageSize )  { this{ "Anonymous Coroutine", storage, storageSize }; }
    43 static inline void ?{}( coroutine_desc & this, const char * name)                    { this{ name, NULL, 0 }; }
    44 static inline void ?{}( coroutine_desc & this, const char * name, size_t stackSize ) { this{ name, NULL, stackSize }; }
     34void ?{}(coStack_t & this);
     35void ?{}(coroutine_desc & this);
     36void ?{}(coroutine_desc & this, const char * name);
     37void ^?{}(coStack_t & this);
     38void ^?{}(coroutine_desc & this);
    4539
    4640//-----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.