Changeset 038110a for libcfa/src
- Timestamp:
- Oct 1, 2020, 12:48:51 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- e235429
- Parents:
- 4e39f51
- Location:
- libcfa/src/concurrency
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/clib/cfathread.cfa
r4e39f51 r038110a 34 34 extern "C" { 35 35 //-------------------- 36 // Basic thread manage nemt36 // Basic thread management 37 37 CRunner * cfathread_create( void (*main)( CRunner * ) ) { 38 38 return new( main ); -
libcfa/src/concurrency/clib/cfathread.h
r4e39f51 r038110a 17 17 #include "invoke.h" 18 18 19 #if defined(__cforall) || defined(__cplu plus)19 #if defined(__cforall) || defined(__cplusplus) 20 20 extern "C" { 21 21 #endif … … 39 39 40 40 41 #if defined(__cforall) || defined(__cplu plus)41 #if defined(__cforall) || defined(__cplusplus) 42 42 } 43 43 #endif -
libcfa/src/concurrency/invoke.h
r4e39f51 r038110a 93 93 94 94 }; 95 // Wrapper for gdb 96 struct cfathread_coroutine_t { $coroutine debug; }; 95 97 96 98 static inline struct __stack_t * __get_stack( struct $coroutine * cor ) { … … 129 131 struct __condition_node_t * dtor_node; 130 132 }; 133 // Wrapper for gdb 134 struct cfathread_monitor_t { $monitor debug; }; 131 135 132 136 struct __monitor_group_t { … … 198 202 #endif 199 203 }; 204 // Wrapper for gdb 205 struct cfathread_thread_t { $thread debug; }; 200 206 201 207 #ifdef __CFA_DEBUG__
Note: See TracChangeset
for help on using the changeset viewer.