Changes in src/libcfa/concurrency/invoke.c [8def349:e15df4c]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/invoke.c
r8def349 re15df4c 29 29 30 30 extern void __suspend_no_inline__F___1(void); 31 extern void __signal_termination__F_P9sthread_h__1(struct thread _h*);31 extern void __signal_termination__F_P9sthread_h__1(struct thread*); 32 32 33 33 void CtxInvokeCoroutine( … … 58 58 void CtxInvokeThread( 59 59 void (*main)(void *), 60 struct thread _h*(*get_thread)(void *),60 struct thread *(*get_thread)(void *), 61 61 void *this 62 62 ) { … … 65 65 __suspend_no_inline__F___1(); 66 66 67 struct thread _h* thrd = get_thread( this );67 struct thread* thrd = get_thread( this ); 68 68 struct coroutine* cor = &thrd->c; 69 69 cor->state = Active;
Note:
See TracChangeset
for help on using the changeset viewer.