Home
last modified time | relevance | path

Searched refs:msec_timeout (Results 1 – 5 of 5) sorted by relevance

/external/ltp/lib/
Dtst_checkpoint.c85 int tst_checkpoint_wait(unsigned int id, unsigned int msec_timeout) in tst_checkpoint_wait() argument
94 timeout.tv_sec = msec_timeout/1000; in tst_checkpoint_wait()
95 timeout.tv_nsec = (msec_timeout%1000) * 1000000; in tst_checkpoint_wait()
102 unsigned int msec_timeout) in tst_checkpoint_wake() argument
121 if (msecs >= msec_timeout) { in tst_checkpoint_wake()
132 unsigned int msec_timeout) in tst_safe_checkpoint_wait() argument
136 if (!msec_timeout) in tst_safe_checkpoint_wait()
137 msec_timeout = DEFAULT_MSEC_TIMEOUT; in tst_safe_checkpoint_wait()
139 ret = tst_checkpoint_wait(id, msec_timeout); in tst_safe_checkpoint_wait()
144 file, lineno, id, msec_timeout); in tst_safe_checkpoint_wait()
/external/ltp/include/
Dtst_checkpoint_fn.h35 int tst_checkpoint_wait(unsigned int id, unsigned int msec_timeout);
45 unsigned int msec_timeout);
49 unsigned int msec_timeout);
Dtst_checkpoint.h26 #define TST_CHECKPOINT_WAIT2(id, msec_timeout) \ argument
27 tst_safe_checkpoint_wait(__FILE__, __LINE__, NULL, id, msec_timeout);
/external/ltp/include/old/
Dold_checkpoint.h46 #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/
Dtest-writing-guidelines.txt696 TST_CHECKPOINT_WAIT2(id, msec_timeout)