Searched refs:secs (Results 1 – 6 of 6) sorted by relevance
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++11/ |
A D | thread.cc | 200 unsigned secs = __s.count(); in __sleep_for() 209 if (__ns.count() > 1000000 || secs == 0) in __sleep_for() 210 ++secs; // No sub-second sleep function, so round up. in __sleep_for() 214 if (secs > 0) in __sleep_for() 217 while ((secs = ::sleep(secs))) in __sleep_for()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/c++11/ |
A D | thread.cc | 200 unsigned secs = __s.count(); in __sleep_for() 209 if (__ns.count() > 1000000 || secs == 0) in __sleep_for() 210 ++secs; // No sub-second sleep function, so round up. in __sleep_for() 214 if (secs > 0) in __sleep_for() 217 while ((secs = ::sleep(secs))) in __sleep_for()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++11/ |
A D | thread.cc | 221 unsigned secs = __s.count(); in __sleep_for() 230 if (__ns.count() > 1000000 || secs == 0) in __sleep_for() 231 ++secs; // No sub-second sleep function, so round up. in __sleep_for() 235 if (secs > 0) in __sleep_for() 238 while ((secs = ::sleep(secs))) in __sleep_for()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/unistd/ |
A D | clone.c | 30 int secs = (input / 10) * 4; in clone_main() local 31 printf("Clone got %lu, sleeping for %i secs\n", input, secs); in clone_main() 32 sleep(secs); in clone_main()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/include/rpc/ |
A D | clnt.h | 174 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \ argument 175 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs)) 176 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \ argument 177 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/time/ |
A D | time.c | 2334 long days, secs; in _time_mktime_tzi() local 2336 long long secs; in _time_mktime_tzi() 2386 secs = p[0] + 60*( p[1] + 60*((long)(p[2])) ) in _time_mktime_tzi() 2389 if (secs < 0) { in _time_mktime_tzi() 2390 secs += 120009600L; in _time_mktime_tzi() 2397 secs += (days * 86400L); in _time_mktime_tzi() 2401 secs = p[0] in _time_mktime_tzi() 2409 if (((unsigned long long)(secs - LONG_MIN)) in _time_mktime_tzi() 2418 t = secs; in _time_mktime_tzi() 2428 secs -= (days * 86400L); in _time_mktime_tzi() [all …]
|
Completed in 12 milliseconds