Rev 1702 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1702 | Rev 1780 | ||
|---|---|---|---|
| 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, __u32 usec, int flags); |
55 | extern int _condvar_wait_timeout(condvar_t *cv, mutex_t *mtx, uint32_t usec, int flags); |
| 56 | 56 | ||
| 57 | #endif |
57 | #endif |
| 58 | 58 | ||
| 59 | /** @} |
59 | /** @} |
| 60 | */ |
60 | */ |