Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/invoke.c

    r8def349 re15df4c  
    2929
    3030extern void __suspend_no_inline__F___1(void);
    31 extern void __signal_termination__F_P9sthread_h__1(struct thread_h*);
     31extern void __signal_termination__F_P9sthread_h__1(struct thread*);
    3232
    3333void CtxInvokeCoroutine(
     
    5858void CtxInvokeThread(
    5959      void (*main)(void *),
    60       struct thread_h *(*get_thread)(void *),
     60      struct thread *(*get_thread)(void *),
    6161      void *this
    6262) {
     
    6565      __suspend_no_inline__F___1();
    6666
    67       struct thread_h* thrd = get_thread( this );
     67      struct thread* thrd = get_thread( this );
    6868      struct coroutine* cor = &thrd->c;
    6969      cor->state = Active;
Note: See TracChangeset for help on using the changeset viewer.