Changes in / [527acfc:0aa20e3]
- Location:
- libcfa/src/concurrency
- Files:
-
- 3 edited
-
iocall.cfa (modified) (1 diff)
-
kernel.cfa (modified) (1 diff)
-
kernel_private.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/iocall.cfa
r527acfc r0aa20e3 346 346 } 347 347 348 // Forward declare in case it is not supported349 struct statx;350 348 int cfa_statx(int dirfd, const char *pathname, int flags, unsigned int mask, struct statx *statxbuf) { 351 349 #if !defined(HAVE_LINUX_IO_URING_H) || !defined(IORING_OP_STATX) -
libcfa/src/concurrency/kernel.cfa
r527acfc r0aa20e3 735 735 void __unpark( struct __processor_id_t * id, $thread * thrd __cfaabi_dbg_ctx_param2 ) { 736 736 // record activity 737 __cfaabi_dbg_debug_do( char * old_caller = thrd->unpark_caller; ) 737 738 __cfaabi_dbg_record_thrd( *thrd, false, caller ); 738 739 -
libcfa/src/concurrency/kernel_private.hfa
r527acfc r0aa20e3 36 36 } 37 37 38 void __schedule_thread( struct __processor_id_t *, $thread * ) 39 #if defined(NDEBUG) || (!defined(__CFA_DEBUG__) && !defined(__CFA_VERIFY__)) 40 __attribute__((nonnull (2))) 41 #endif 42 ; 38 void __schedule_thread( struct __processor_id_t *, $thread * ) __attribute__((nonnull (2))); 43 39 44 40 //Block current thread and release/wake-up the following resources
Note:
See TracChangeset
for help on using the changeset viewer.