Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/thread

    r399a908 rb10affd  
    2020
    2121#include "coroutine"
    22 #include "kernel"
    2322#include "monitor"
    2423
    2524//-----------------------------------------------------------------------------
    26 // thread trait
     25// Coroutine trait
     26// Anything that implements this trait can be resumed.
     27// Anything that is resumed is a coroutine.
    2728trait is_thread(dtype T) {
    2829      void ^?{}(T& mutex this);
     
    5152}
    5253
    53 extern struct cluster * mainCluster;
     54//extern thread_local thread_desc * volatile this_thread;
    5455
    5556forall( dtype T | is_thread(T) )
     
    5859//-----------------------------------------------------------------------------
    5960// Ctors and dtors
    60 void ?{}(thread_desc & this, const char * const name, struct cluster & cl, void * storage, size_t storageSize );
    61 void ^?{}(thread_desc & this);
    62 
    63 static inline void ?{}(thread_desc & this)                                                                  { this{ "Anonymous Thread", *mainCluster, NULL, 0 }; }
    64 static inline void ?{}(thread_desc & this, size_t stackSize )                                               { this{ "Anonymous Thread", *mainCluster, NULL, stackSize }; }
    65 static inline void ?{}(thread_desc & this, void * storage, size_t storageSize )                             { this{ "Anonymous Thread", *mainCluster, storage, storageSize }; }
    66 static inline void ?{}(thread_desc & this, struct cluster & cl )                                            { this{ "Anonymous Thread", cl, NULL, 0 }; }
    67 static inline void ?{}(thread_desc & this, struct cluster & cl, size_t stackSize )                          { this{ "Anonymous Thread", cl, 0, stackSize }; }
    68 static inline void ?{}(thread_desc & this, struct cluster & cl, void * storage, size_t storageSize )        { this{ "Anonymous Thread", cl, storage, storageSize }; }
    69 static inline void ?{}(thread_desc & this, const char * const name)                                         { this{ name, *mainCluster, NULL, 0 }; }
    70 static inline void ?{}(thread_desc & this, const char * const name, struct cluster & cl )                   { this{ name, cl, NULL, 0 }; }
    71 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);
    7263
    7364//-----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.