~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to kernel/generic/include/synch/condvar.h

  • Committer: Martin Decky
  • Date: 2012-06-15 17:07:30 UTC
  • Revision ID: martin@decky.cz-20120615170730-aj8q3dd5n4nvce2a
cstyle

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
#define condvar_wait(cv, mtx) \
48
48
        _condvar_wait_timeout((cv), (mtx), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE)
 
49
 
49
50
#define condvar_wait_timeout(cv, mtx, usec) \
50
51
        _condvar_wait_timeout((cv), (mtx), (usec), SYNCH_FLAGS_NONE)
51
52