- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel/fwd.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/fwd.hfa
r24e321c re84ab3d 119 119 120 120 extern "Cforall" { 121 enum unpark_hint { UNPARK_LOCAL, UNPARK_REMOTE };122 123 121 extern void park( void ); 124 extern void unpark( struct thread$ *, unpark_hint ); 125 static inline void unpark( struct thread$ * thrd ) { unpark(thrd, UNPARK_LOCAL); } 122 extern void unpark( struct thread$ * this ); 126 123 static inline struct thread$ * active_thread () { 127 124 struct thread$ * t = publicTLS_get( this_thread );
Note:
See TracChangeset
for help on using the changeset viewer.