Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/monitor

    rbe3d020 r44264c5  
    5959        unsigned short count;                           //Number of criterions in the criteria
    6060        __condition_node_t * next;                      //Intrusive linked list Next field
    61         uintptr_t user_info;                            //Custom user info accessible before signalling
    6261};
    6362
     
    8685}
    8786
    88 void wait( condition * this, uintptr_t user_info = 0 );
    89 bool signal( condition * this );
    90 bool signal_block( condition * this );
    91 static inline bool is_empty( condition * this ) { return !this->blocked.head; }
    92 uintptr_t front( condition * this );
    93 
     87void wait( condition * this );
     88void signal( condition * this );
     89void signal_block( condition * this );
    9490#endif //MONITOR_H
Note: See TracChangeset for help on using the changeset viewer.