ts 135 plugin/ipc/file/posixipcwrappers.cpp struct timespec ts; ts 137 plugin/ipc/file/posixipcwrappers.cpp JASSERT(clock_gettime(CLOCK_REALTIME, &ts) != -1); ts 138 plugin/ipc/file/posixipcwrappers.cpp ts.tv_sec += 1000; ts 139 plugin/ipc/file/posixipcwrappers.cpp res = mq_timedsend(mqdes, msg_ptr, msg_len, msg_prio, &ts); ts 149 plugin/ipc/file/posixipcwrappers.cpp struct timespec ts; ts 151 plugin/ipc/file/posixipcwrappers.cpp JASSERT(clock_gettime(CLOCK_REALTIME, &ts) != -1); ts 152 plugin/ipc/file/posixipcwrappers.cpp ts.tv_sec += 1000; ts 153 plugin/ipc/file/posixipcwrappers.cpp res = mq_timedreceive(mqdes, msg_ptr, msg_len, msg_prio, &ts); ts 163 plugin/ipc/file/posixipcwrappers.cpp struct timespec ts; ts 167 plugin/ipc/file/posixipcwrappers.cpp JASSERT(clock_gettime(CLOCK_REALTIME, &ts) != -1); ts 168 plugin/ipc/file/posixipcwrappers.cpp if (TIMESPEC_CMP(&ts, abs_timeout, <=)) { ts 169 plugin/ipc/file/posixipcwrappers.cpp TIMESPEC_ADD(&ts, &ts_100ms, &ts); ts 171 plugin/ipc/file/posixipcwrappers.cpp ret = _real_mq_timedsend(mqdes, msg_ptr, msg_len, msg_prio, &ts); ts 177 plugin/ipc/file/posixipcwrappers.cpp } while (TIMESPEC_CMP(&ts, abs_timeout, <)); ts 188 plugin/ipc/file/posixipcwrappers.cpp struct timespec ts; ts 192 plugin/ipc/file/posixipcwrappers.cpp JASSERT(clock_gettime(CLOCK_REALTIME, &ts) != -1); ts 193 plugin/ipc/file/posixipcwrappers.cpp if (TIMESPEC_CMP(&ts, abs_timeout, <=)) { ts 194 plugin/ipc/file/posixipcwrappers.cpp TIMESPEC_ADD(&ts, &ts_100ms, &ts); ts 196 plugin/ipc/file/posixipcwrappers.cpp ret = _real_mq_timedreceive(mqdes, msg_ptr, msg_len, msg_prio, &ts); ts 202 plugin/ipc/file/posixipcwrappers.cpp } while (TIMESPEC_CMP(&ts, abs_timeout, <)); ts 412 plugin/pid/pidwrappers.cpp struct timespec ts = {0, 1000}; ts 447 plugin/pid/pidwrappers.cpp nanosleep(&ts, NULL); ts 448 plugin/pid/pidwrappers.cpp if (TIMESPEC_CMP(&ts, &maxts, <)) { ts 449 plugin/pid/pidwrappers.cpp TIMESPEC_ADD(&ts, &ts, &ts); ts 506 plugin/pid/pidwrappers.cpp struct timespec ts = {0, 1000}; ts 528 plugin/pid/pidwrappers.cpp nanosleep(&ts, NULL); ts 529 plugin/pid/pidwrappers.cpp if (TIMESPEC_CMP(&ts, &maxts, <)) { ts 530 plugin/pid/pidwrappers.cpp TIMESPEC_ADD(&ts, &ts, &ts); ts 264 threadwrappers.cpp struct timespec ts; ts 272 threadwrappers.cpp JASSERT(clock_gettime(CLOCK_REALTIME, &ts) != -1); ts 273 threadwrappers.cpp TIMESPEC_ADD(&ts, &ts_100ms, &ts); ts 274 threadwrappers.cpp ret = _real_pthread_timedjoin_np(thread, retval, &ts); ts 305 threadwrappers.cpp struct timespec ts; ts 316 threadwrappers.cpp JASSERT(clock_gettime(CLOCK_REALTIME, &ts) != -1); ts 317 threadwrappers.cpp if (TIMESPEC_CMP(&ts, abstime, <)) { ts 318 threadwrappers.cpp TIMESPEC_ADD(&ts, &ts_100ms, &ts); ts 319 threadwrappers.cpp ret = _real_pthread_timedjoin_np(thread, retval, &ts); ts 328 threadwrappers.cpp if (TIMESPEC_CMP(&ts, abstime, >=)) {