- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel_private.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel_private.hfa
r8c50aed r09f357ec 31 31 } 32 32 33 void __schedule_thread( thread_desc * ) __attribute__((nonnull (1))); 33 void ScheduleThread( thread_desc * ); 34 static inline void WakeThread( thread_desc * thrd ) { 35 if( !thrd ) return; 36 37 verify(thrd->state == Inactive); 38 39 disable_interrupts(); 40 ScheduleThread( thrd ); 41 enable_interrupts( __cfaabi_dbg_ctx ); 42 } 43 thread_desc * nextThread(cluster * this); 34 44 35 45 //Block current thread and release/wake-up the following resources 36 void __leave_thread() __attribute__((noreturn)); 46 void BlockInternal(void); 47 void BlockInternal(__spinlock_t * lock); 48 void BlockInternal(thread_desc * thrd); 49 void BlockInternal(__spinlock_t * lock, thread_desc * thrd); 50 void BlockInternal(__spinlock_t * locks [], unsigned short count); 51 void BlockInternal(__spinlock_t * locks [], unsigned short count, thread_desc * thrds [], unsigned short thrd_count); 52 void BlockInternal(__finish_callback_fptr_t callback); 53 void LeaveThread(__spinlock_t * lock, thread_desc * thrd); 37 54 38 55 //----------------------------------------------------------------------------- … … 40 57 void main(processorCtx_t *); 41 58 42 void * __create_pthread( pthread_t *, void * (*)(void *), void * );59 void * create_pthread( pthread_t *, void * (*)(void *), void * ); 43 60 44 61 static inline void wake_fast(processor * this) { … … 85 102 #define KERNEL_STORAGE(T,X) static char storage_##X[sizeof(T)] 86 103 87 static inline uint32_t __tls_rand() {104 static inline uint32_t tls_rand() { 88 105 kernelTLS.rand_seed ^= kernelTLS.rand_seed << 6; 89 106 kernelTLS.rand_seed ^= kernelTLS.rand_seed >> 21;
Note:
See TracChangeset
for help on using the changeset viewer.