Ignore:
File:
1 edited

Legend:

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

    re84ab3d rc457dc41  
    2525#include "containers/list.hfa"
    2626
    27 struct thread$;
     27struct $thread;
    2828struct processor;
    2929
     
    5252
    5353        union {
    54                 thread$ * thrd;                 // thrd who created event
     54                $thread * thrd;                 // thrd who created event
    5555                processor * proc;                       // proc who created event
    5656                Alarm_Callback callback;        // callback to handle event
     
    6363P9_EMBEDDED( alarm_node_t, dlink(alarm_node_t) )
    6464
    65 void ?{}( alarm_node_t & this, thread$ * thrd, Duration alarm, Duration period );
     65void ?{}( alarm_node_t & this, $thread * thrd, Duration alarm, Duration period );
    6666void ?{}( alarm_node_t & this, processor * proc, Duration alarm, Duration period );
    6767void ?{}( alarm_node_t & this, Alarm_Callback callback, Duration alarm, Duration period );
Note: See TracChangeset for help on using the changeset viewer.