Changeset 4a3386b4 for src/libcfa/concurrency/invoke.h
- Timestamp:
- Jan 19, 2017, 2:56:51 PM (9 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:
- 8f49a54
- Parents:
- 765aa76 (diff), c2416d5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/invoke.h
r765aa76 r4a3386b4 35 35 }; 36 36 37 struct thread_h { 38 struct coroutine c; 39 }; 40 37 41 #endif //_INVOKE_H_ 38 42 #else //! defined(__CFA_INVOKE_PRIVATE__) … … 48 52 // assembler routines that performs the context switch 49 53 extern void CtxInvokeStub( void ); 50 void CtxSwitch( void *from, void *to ) asm ("CtxSwitch"); 54 void CtxSwitch( void * from, void * to ) asm ("CtxSwitch"); 55 void CtxGet( void * this ) asm ("CtxGet"); 51 56 52 57 #endif //_INVOKE_PRIVATE_H_
Note:
See TracChangeset
for help on using the changeset viewer.