Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/thread

    rde6319f rb10affd  
    2323
    2424//-----------------------------------------------------------------------------
    25 // thread trait
     25// Coroutine trait
     26// Anything that implements this trait can be resumed.
     27// Anything that is resumed is a coroutine.
    2628trait is_thread(dtype T) {
    2729      void ^?{}(T& mutex this);
     
    5052}
    5153
    52 extern struct cluster * mainCluster;
     54//extern thread_local thread_desc * volatile this_thread;
    5355
    5456forall( dtype T | is_thread(T) )
     
    5759//-----------------------------------------------------------------------------
    5860// Ctors and dtors
    59 void ?{}(thread_desc & this, const char * const name, struct cluster & cl, void * storage, size_t storageSize );
    60 void ^?{}(thread_desc & this);
    61 
    62 static inline void ?{}(thread_desc & this)                                                                  { this{ "Anonymous Thread", *mainCluster, NULL, 0 }; }
    63 static inline void ?{}(thread_desc & this, size_t stackSize )                                               { this{ "Anonymous Thread", *mainCluster, NULL, stackSize }; }
    64 static inline void ?{}(thread_desc & this, void * storage, size_t storageSize )                             { this{ "Anonymous Thread", *mainCluster, storage, storageSize }; }
    65 static inline void ?{}(thread_desc & this, struct cluster & cl )                                            { this{ "Anonymous Thread", cl, NULL, 0 }; }
    66 static inline void ?{}(thread_desc & this, struct cluster & cl, size_t stackSize )                          { this{ "Anonymous Thread", cl, 0, stackSize }; }
    67 static inline void ?{}(thread_desc & this, struct cluster & cl, void * storage, size_t storageSize )        { this{ "Anonymous Thread", cl, storage, storageSize }; }
    68 static inline void ?{}(thread_desc & this, const char * const name)                                         { this{ name, *mainCluster, NULL, 0 }; }
    69 static inline void ?{}(thread_desc & this, const char * const name, struct cluster & cl )                   { this{ name, cl, NULL, 0 }; }
    70 static inline void ?{}(thread_desc & this, const char * const name, struct cluster & cl, size_t stackSize ) { this{ name, cl, NULL, stackSize }; }
     61void ?{}(thread_desc& this);
     62void ^?{}(thread_desc& this);
    7163
    7264//-----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.