Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/thread.hfa

    re235429 r77a2994  
    8888//----------
    8989// Park thread: block until corresponding call to unpark, won't block if unpark is already called
    90 void park( void );
     90void park( __cfaabi_dbg_ctx_param );
    9191
    9292//----------
    9393// Unpark a thread, if the thread is already blocked, schedule it
    9494//                  if the thread is not yet block, signal that it should rerun immediately
    95 void unpark( $thread * this );
     95void unpark( $thread * this __cfaabi_dbg_ctx_param2 );
    9696
    9797forall( dtype T | is_thread(T) )
    98 static inline void unpark( T & this ) { if(!&this) return; unpark( get_thread( this ) );}
     98static inline void unpark( T & this __cfaabi_dbg_ctx_param2 ) { if(!&this) return; unpark( get_thread( this ) __cfaabi_dbg_ctx_fwd2 );}
    9999
    100100//----------
Note: See TracChangeset for help on using the changeset viewer.