Changeset 2026bb6 for libcfa/src/concurrency
- Timestamp:
- Jul 19, 2019, 10:31:53 AM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8ac3b0e
- Parents:
- 6f15121
- Location:
- libcfa/src/concurrency
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/alarm.cfa
r6f15121 r2026bb6 13 13 // Update Count : 67 14 14 // 15 16 #define __cforall_thread__ 15 17 16 18 extern "C" { -
libcfa/src/concurrency/coroutine.cfa
r6f15121 r2026bb6 13 13 // Update Count : 9 14 14 // 15 16 #define __cforall_thread__ 15 17 16 18 #include "coroutine.hfa" -
libcfa/src/concurrency/invoke.c
r6f15121 r2026bb6 13 13 // Update Count : 5 14 14 // 15 16 #define __cforall_thread__ 15 17 16 18 #include <stdbool.h> … … 31 33 extern void __finish_creation( struct thread_desc * ); 32 34 extern void __leave_thread_monitor( struct thread_desc * this ); 33 extern void disable_interrupts() ;35 extern void disable_interrupts() OPTIONAL_THREAD; 34 36 extern void enable_interrupts( __cfaabi_dbg_ctx_param ); 35 37 -
libcfa/src/concurrency/kernel.cfa
r6f15121 r2026bb6 13 13 // Update Count : 25 14 14 // 15 16 #define __cforall_thread__ 15 17 16 18 //C Includes … … 943 945 } 944 946 ) 947 948 //----------------------------------------------------------------------------- 949 // Debug 950 bool threading_enabled(void) { 951 return true; 952 } 945 953 // Local Variables: // 946 954 // mode: c // -
libcfa/src/concurrency/kernel_private.hfa
r6f15121 r2026bb6 26 26 27 27 extern "C" { 28 void disable_interrupts() ;28 void disable_interrupts() OPTIONAL_THREAD; 29 29 void enable_interrupts_noPoll(); 30 30 void enable_interrupts( __cfaabi_dbg_ctx_param ); -
libcfa/src/concurrency/monitor.cfa
r6f15121 r2026bb6 13 13 // Update Count : 9 14 14 // 15 16 #define __cforall_thread__ 15 17 16 18 #include "monitor.hfa" -
libcfa/src/concurrency/mutex.cfa
r6f15121 r2026bb6 15 15 // Update Count : 0 16 16 // 17 18 #define __cforall_thread__ 17 19 18 20 #include "mutex.hfa" -
libcfa/src/concurrency/preemption.cfa
r6f15121 r2026bb6 13 13 // Update Count : 37 14 14 // 15 16 #define __cforall_thread__ 15 17 16 18 #include "preemption.hfa" -
libcfa/src/concurrency/thread.cfa
r6f15121 r2026bb6 13 13 // Update Count : 8 14 14 // 15 16 #define __cforall_thread__ 15 17 16 18 #include "thread.hfa"
Note: See TracChangeset
for help on using the changeset viewer.