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
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/
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.txt770 TST_CHECKPOINT_WAIT2(id, msec_timeout)