Changeset e4745d7a for src/libcfa/concurrency
- Timestamp:
- Dec 6, 2016, 3:38:11 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- d9c44c3
- Parents:
- c5cb6130
- Location:
- src/libcfa/concurrency
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/invoke.c
rc5cb6130 re4745d7a 28 28 29 29 void __startCoroutine__A0_1_0___this_coroutine__PFP10scoroutine_Pd0___co_main__PF_Pd0___vtable__PFP9scoVtable_Pd0__F_Pd0PF_P9scoVtablePv___1( 30 struct coroutine *(*this_coroutine)(void * ), 31 void (*co_main)(void *), 32 struct coVtable *(*get_vtable)(void *), 33 void *vthis, 30 struct coroutine *(*this_coroutine)(void * ), 31 void (*co_main)(void *), 32 struct coVtable *(*get_vtable)(void *), 33 void *vthis, 34 34 void (*invoke)(struct coVtable *, void *) 35 35 ) { 36 36 37 #if ! defined( __x86_64__ ) 38 #error Only __x86_64__ is supported for threads in cfa37 #if ! defined( __x86_64__ ) && ! defined( __i386__ ) 38 #error Only __x86_64__ and __i386__ is supported for threads in cfa 39 39 #endif 40 40
Note: See TracChangeset
for help on using the changeset viewer.