Searched refs:ret (Results 1 – 6 of 6) sorted by relevance
/rt/ |
A D | aio_error.c | 37 int ret; in __aio_error() local 42 ret = aiocbp->__error_code; in __aio_error() 45 return ret; in __aio_error()
|
A D | tst-mqueue1.c | 108 int ret; in do_one_test() local 112 ret = mq_send (q, (char *) &v[i], 1, v[i] >> 4); in do_one_test() 114 ret = mq_timedsend (q, (char *) &v[i], 1, v[i] >> 4, &ts); in do_one_test() 116 if (ret) in do_one_test() 123 ret = mq_timedsend (q, (char *) &v[10], 1, 8, &ts); in do_one_test() 124 if (ret != -1) in do_one_test() 138 ret = mq_send (q, (char *) &v[10], 1, 8); in do_one_test() 139 if (ret != -1) in do_one_test() 254 ret = mq_receive (q, (char *) &vr[10], 1, &prio); in do_one_test() 255 if (ret != -1) in do_one_test()
|
A D | tst-mqueue6.c | 78 int ret = pthread_getattr_np (pthread_self (), &nattr); in fct() local 79 if (ret) in fct() 81 errno = ret; in fct() 87 ret = pthread_attr_getguardsize (&nattr, &fct_guardsize); in fct() 88 if (ret) in fct() 90 errno = ret; in fct()
|
A D | tst-timer4.c | 69 int ret = pthread_getattr_np (pthread_self (), &nattr); in thr2() local 70 if (ret) in thr2() 72 errno = ret; in thr2() 78 ret = pthread_attr_getguardsize (&nattr, &guardsize); in thr2() 79 if (ret) in thr2() 81 errno = ret; in thr2() 280 int ret = timer_getoverrun (timer_thr1); in do_test() local 281 if (ret != 0) in do_test() 283 if (ret == -1) in do_test() 286 printf ("*** timer_getoverrun returned %d != 0\n", ret); in do_test()
|
A D | tst-mqueue5.c | 382 int ret = pthread_create (&th, NULL, thr, &thr_data); in do_child() local 383 if (ret) in do_child() 385 errno = ret; in do_child() 532 ret = pthread_join (th, &thr_ret); in do_child() 533 if (ret) in do_child() 535 errno = ret; in do_child()
|
A D | aio_misc.c | 57 int ret = __pthread_create (threadp, &attr, tf, arg); in __aio_create_helper_thread() local 60 return ret; in __aio_create_helper_thread()
|
Completed in 12 milliseconds