Home | History | Annotate | Download | only in old

Lines Matching refs:id

23    shared memory for futexes and the id is an offset to it which gives the user
25 can sleep on single id and can be woken up by single wake.
43 #define TST_SAFE_CHECKPOINT_WAIT(cleanup_fn, id) \
44 tst_safe_checkpoint_wait(__FILE__, __LINE__, cleanup_fn, id, 0);
46 #define TST_SAFE_CHECKPOINT_WAIT2(cleanup_fn, id, msec_timeout) \
47 tst_safe_checkpoint_wait(__FILE__, __LINE__, cleanup_fn, id, msec_timeout);
49 #define TST_SAFE_CHECKPOINT_WAKE(cleanup_fn, id) \
50 tst_safe_checkpoint_wake(__FILE__, __LINE__, cleanup_fn, id, 1);
52 #define TST_SAFE_CHECKPOINT_WAKE2(cleanup_fn, id, nr_wake) \
53 tst_safe_checkpoint_wake(__FILE__, __LINE__, cleanup_fn, id, nr_wake);
55 #define TST_SAFE_CHECKPOINT_WAKE_AND_WAIT(cleanup_fn, id) \
56 tst_safe_checkpoint_wake(__FILE__, __LINE__, cleanup_fn, id, 1); \
57 tst_safe_checkpoint_wait(__FILE__, __LINE__, cleanup_fn, id, 0);