Changes in src/libcfa/concurrency/invoke.c [e15df4c:8def349]
- File:
-
- 1 edited
-
src/libcfa/concurrency/invoke.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/invoke.c
re15df4c r8def349 29 29 30 30 extern void __suspend_no_inline__F___1(void); 31 extern void __signal_termination__F_P9sthread_h__1(struct thread *);31 extern void __signal_termination__F_P9sthread_h__1(struct thread_h*); 32 32 33 33 void CtxInvokeCoroutine( … … 58 58 void CtxInvokeThread( 59 59 void (*main)(void *), 60 struct thread *(*get_thread)(void *),60 struct thread_h *(*get_thread)(void *), 61 61 void *this 62 62 ) { … … 65 65 __suspend_no_inline__F___1(); 66 66 67 struct thread * thrd = get_thread( this );67 struct thread_h* 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.