Ignore:
File:
1 edited

Legend:

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

    rc457dc41 rddd473f  
    290290        bool wait( condition_variable(L) & this, Duration duration );
    291291        bool wait( condition_variable(L) & this, uintptr_t info, Duration duration );
     292        bool wait( condition_variable(L) & this, Time time );
     293        bool wait( condition_variable(L) & this, uintptr_t info, Time time );
    292294
    293295        void wait( condition_variable(L) & this, L & l );
     
    295297        bool wait( condition_variable(L) & this, L & l, Duration duration );
    296298        bool wait( condition_variable(L) & this, L & l, uintptr_t info, Duration duration );
    297 }
     299        bool wait( condition_variable(L) & this, L & l, Time time );
     300        bool wait( condition_variable(L) & this, L & l, uintptr_t info, Time time );
     301}
Note: See TracChangeset for help on using the changeset viewer.