Searched refs:EAGAIN (Results 1 - 25 of 59) sorted by relevance

123

/xnu-2422.115.4/bsd/sys/
H A Derrno.h101 /* 11 was EAGAIN */
131 #define EAGAIN 35 /* Resource temporarily unavailable */ macro
132 #define EWOULDBLOCK EAGAIN /* Operation would block */
/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Derrno.d91 inline int EAGAIN = 35;
93 #pragma D binding "1.0" EAGAIN
/xnu-2422.115.4/bsd/kern/
H A Dkern_aio.c537 result = EAGAIN;
1091 * set appropriately - EAGAIN if timeout elapses or EINTR if an interrupt
1148 error = EAGAIN;
1164 error = EAGAIN;
1196 * we return EAGAIN (35) for timeout expiration and EINTR (4) when a signal
1215 error = EAGAIN;
1346 result = EAGAIN;
1491 call_result = EAGAIN;
1497 call_result = EAGAIN;
1509 call_result = EAGAIN;
[all...]
H A Dkern_fork.c214 * Returns: EAGAIN Administrative limit reached
372 return (EAGAIN);
385 err = EAGAIN;
543 err = EAGAIN;
844 * EAGAIN Resource unavailable, try again
H A Dsysv_shm.c679 return EAGAIN;
856 if (error == EAGAIN)
H A Dsys_generic.c938 * EAGAIN Nonconformant error if allocation fails
986 * Note: If this process fails, select() will return EAGAIN; this
1004 return (EAGAIN);
1009 return (EAGAIN);
1417 return (EAGAIN);
1422 error = EAGAIN;
H A Dsys_pipe.c809 error = EAGAIN;
1056 error = EAGAIN;
H A Dsysv_msg.c857 eval = EAGAIN;
1311 eval = EAGAIN;
H A Dubc_subr.c2945 error = EAGAIN;
3054 if (error == EAGAIN) {
3056 * See above: error is EAGAIN if we were asked
H A Dkern_lockf.c156 * lf_setlock:EAGAIN
439 * EAGAIN
488 return (EAGAIN);
H A Dkern_mman.c1066 return EAGAIN;
H A Dkern_newsysctl.c1610 } while (error == EAGAIN);
H A Dposix_sem.c922 error = EAGAIN;
/xnu-2422.115.4/tools/tests/xnu_quick_test/
H A Dsema_tests.c122 /* get the lock - should return EAGAIN (EWOULDBLOCK) */
126 if ( my_err != EAGAIN ) {
/xnu-2422.115.4/bsd/vm/
H A Ddp_backing_file.c366 error = EAGAIN;
542 error = EAGAIN;
545 error = EAGAIN;
612 error = EAGAIN; /* XXX why EAGAIN ? */
H A Dvnode_pager.c691 * a) In the case of decmpfs, however, we may return an error (EAGAIN) to avoid
699 if(error == EAGAIN) {
/xnu-2422.115.4/tools/tests/libMicro/
H A Dconnection.c269 errno != EAGAIN))
/xnu-2422.115.4/bsd/security/audit/
H A Daudit_bsm_errno.c93 { BSM_ERRNO_EAGAIN, EAGAIN, ES("Resource temporarily unavailable") },
/xnu-2422.115.4/tools/tests/libMicro/apple/
H A Dlmbench_select_tcp.c404 || errno == EAGAIN) {
/xnu-2422.115.4/bsd/hfs/
H A Dhfs_search.c424 err = EAGAIN; /* signal to the user to call searchfs again */
427 err = EAGAIN;
433 err = EAGAIN;
H A Dhfs_vfsutils.c3313 if (error == EAGAIN) {
3331 if (error == EAGAIN) {
3366 if (error == EAGAIN) {
H A Dhfs_readwrite.c260 if (retval == EAGAIN) {
698 if (retval == EAGAIN) {
700 * EAGAIN indicates that we still have I/O to do, but
705 * did manage to do some I/O before returning EAGAIN
808 if (retval == EAGAIN) {
4363 } else if (error == EAGAIN) {
4365 * EAGAIN indicates someone else already holds the compression lock...
/xnu-2422.115.4/bsd/netinet6/
H A Din6_src.c1282 return (EAGAIN);
1304 return (EAGAIN);
1321 return (EAGAIN);
/xnu-2422.115.4/bsd/nfs/
H A Dnfs_lock.c393 return (EAGAIN);
453 if (error && error != EAGAIN)
H A Dnfs_bio.c547 while ((error = nfs_buf_acquire(bp, 0, 0, 0)) == EAGAIN);
1355 return (EAGAIN);
3491 if (error != EAGAIN) {
3703 if (error != EAGAIN) {
3721 if (error != EAGAIN) {

Completed in 151 milliseconds

123