Searched refs:r (Results 1 – 5 of 5) sorted by relevance
/rt/ |
A D | tst-mqueue8.c | 52 int r = pthread_barrier_wait (&b); in tf() local 53 if (r != 0 && r != PTHREAD_BARRIER_SERIAL_THREAD) in tf() 135 int r = pthread_barrier_wait (&b); in do_test() local 136 if (r != 0 && r != PTHREAD_BARRIER_SERIAL_THREAD) in do_test() 201 r = pthread_barrier_wait (&b); in do_test() 202 if (r != 0 && r != PTHREAD_BARRIER_SERIAL_THREAD) in do_test()
|
A D | tst-aio8.c | 30 int r = lio_listio (LIO_WAIT, list, 1, NULL); in do_test() local 33 printf ("r = %d, e = %d (%s)\n", r, e, strerror (e)); in do_test() 35 return r != -1 || e != EIO; in do_test()
|
A D | tst-aio7.c | 103 int i, r, fd; in do_test() local 127 r = aio_read (&cb0); in do_test() 128 if (r != 0) in do_test() 147 r = aio_read (&cb1); in do_test() 148 if (r != 0) in do_test() 158 r = aio_suspend ((const struct aiocb * const *) list, ELEMS, &timeout); in do_test() 160 if (r == -1 && errno == EAGAIN) in do_test()
|
A D | tst-shm-cancel.c | 122 void *r; in do_test() local 123 if (pthread_join (td, &r) != 0) in do_test() 129 if (r == PTHREAD_CANCELED) in do_test()
|
A D | tst-mqueue3.c | 227 int r; in do_test() local 228 if (TEMP_FAILURE_RETRY (waitpid (pid, &r, 0)) != pid) in do_test() 235 return WIFEXITED (r) && WEXITSTATUS (r) == UNIQUE ? 0 : 1; in do_test()
|
Completed in 9 milliseconds