Searched refs:msec_timeout (Results 1 – 5 of 5) sorted by relevance
/external/ltp/lib/ |
D | tst_checkpoint.c | 85 int tst_checkpoint_wait(unsigned int id, unsigned int msec_timeout) in tst_checkpoint_wait() argument 95 timeout.tv_sec = msec_timeout/1000; in tst_checkpoint_wait() 96 timeout.tv_nsec = (msec_timeout%1000) * 1000000; in tst_checkpoint_wait() 107 unsigned int msec_timeout) in tst_checkpoint_wake() argument 126 if (msecs >= msec_timeout) { in tst_checkpoint_wake() 137 unsigned int msec_timeout) in tst_safe_checkpoint_wait() argument 141 if (!msec_timeout) in tst_safe_checkpoint_wait() 142 msec_timeout = DEFAULT_MSEC_TIMEOUT; in tst_safe_checkpoint_wait() 144 ret = tst_checkpoint_wait(id, msec_timeout); in tst_safe_checkpoint_wait() 149 file, lineno, id, msec_timeout); in tst_safe_checkpoint_wait()
|
/external/ltp/include/ |
D | tst_checkpoint_fn.h | 35 int tst_checkpoint_wait(unsigned int id, unsigned int msec_timeout); 45 unsigned int msec_timeout); 49 unsigned int msec_timeout);
|
D | tst_checkpoint.h | 26 #define TST_CHECKPOINT_WAIT2(id, msec_timeout) \ argument 27 tst_safe_checkpoint_wait(__FILE__, __LINE__, NULL, id, msec_timeout);
|
/external/ltp/include/old/ |
D | old_checkpoint.h | 46 #define TST_SAFE_CHECKPOINT_WAIT2(cleanup_fn, id, msec_timeout) \ argument 47 tst_safe_checkpoint_wait(__FILE__, __LINE__, cleanup_fn, id, msec_timeout);
|
/external/ltp/doc/ |
D | test-writing-guidelines.txt | 770 TST_CHECKPOINT_WAIT2(id, msec_timeout)
|