Changes in src/libcfa/concurrency/kernel [ea7d2b0:025278e]
- File:
-
- 1 edited
-
src/libcfa/concurrency/kernel (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/kernel
rea7d2b0 r025278e 26 26 //----------------------------------------------------------------------------- 27 27 // Locks 28 // //Lock the spinlock, spin if already acquired29 //void lock ( spinlock * DEBUG_CTX_PARAM2 );28 // Lock the spinlock, spin if already acquired 29 void lock ( spinlock * DEBUG_CTX_PARAM2 ); 30 30 31 // //Lock the spinlock, yield repeatedly if already acquired32 //void lock_yield( spinlock * DEBUG_CTX_PARAM2 );31 // Lock the spinlock, yield repeatedly if already acquired 32 void lock_yield( spinlock * DEBUG_CTX_PARAM2 ); 33 33 34 // //Lock the spinlock, return false if already acquired35 //bool try_lock ( spinlock * DEBUG_CTX_PARAM2 );34 // Lock the spinlock, return false if already acquired 35 bool try_lock ( spinlock * DEBUG_CTX_PARAM2 ); 36 36 37 // //Unlock the spinlock38 //void unlock ( spinlock * );37 // Unlock the spinlock 38 void unlock ( spinlock * ); 39 39 40 40 struct semaphore { 41 __spinlock_tlock;41 spinlock lock; 42 42 int count; 43 43 __thread_queue_t waiting; … … 54 54 struct cluster { 55 55 // Ready queue locks 56 __spinlock_tready_queue_lock;56 spinlock ready_queue_lock; 57 57 58 58 // Ready queue for threads … … 74 74 FinishOpCode action_code; 75 75 thread_desc * thrd; 76 __spinlock_t* lock;77 __spinlock_t** locks;76 spinlock * lock; 77 spinlock ** locks; 78 78 unsigned short lock_count; 79 79 thread_desc ** thrds;
Note:
See TracChangeset
for help on using the changeset viewer.