Subversion Repositories HelenOS

Rev

Rev 2085 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2085 Rev 2106
Line 50... Line 50...
50
    _condvar_wait_timeout((cv),(mtx),(usec),SYNCH_FLAGS_NONE)
50
    _condvar_wait_timeout((cv), (mtx), (usec), SYNCH_FLAGS_NONE)
51
 
51
 
52
extern void condvar_initialize(condvar_t *cv);
52
extern void condvar_initialize(condvar_t *cv);
53
extern void condvar_signal(condvar_t *cv);
53
extern void condvar_signal(condvar_t *cv);
54
extern void condvar_broadcast(condvar_t *cv);
54
extern void condvar_broadcast(condvar_t *cv);
55
extern int _condvar_wait_timeout(condvar_t *cv, mutex_t *mtx, uint32_t usec, int flags);
55
extern int _condvar_wait_timeout(condvar_t *cv, mutex_t *mtx, uint32_t usec,
-
 
56
    int flags);
56
 
57
 
57
#endif
58
#endif
58
 
59
 
59
/** @}
60
/** @}
60
 */
61
 */