Searched refs:ERESTART (Results 1 - 25 of 125) sorted by relevance

12345

/freebsd-11-stable/sys/xen/interface/
H A Derrno.h69 XEN_ERRNO(ERESTART, 85) /* Interrupted system call should be restarted */
/freebsd-11-stable/sys/dev/drm2/ttm/
H A Dttm_lock.c110 if (ret == -EINTR || ret == -ERESTART)
156 if (ret == -EINTR || ret == -ERESTART)
211 if (ret == -EINTR || ret == -ERESTART)
289 if (ret == -EINTR || ret == -ERESTART)
/freebsd-11-stable/sys/dev/twa/
H A Dtw_osl_share.h109 #define TW_OSL_ERESTART ERESTART /* sleep terminated by a signal */
/freebsd-11-stable/sys/contrib/vchiq/interface/compat/
H A Dvchi_bsd.c258 } else if ((res == EINTR) || (res == ERESTART)) {
259 return -ERESTART;
283 if ((res == EINTR) || (res == ERESTART))
284 res = -ERESTART;
357 if (ret == ERESTART)
/freebsd-11-stable/sys/dev/drm/
H A Dmga_irq.c142 if (ret == -ERESTART)
H A Ddrm_lock.c91 if (ret == ERESTART)
/freebsd-11-stable/sys/sys/
H A Derrno.h189 #define ERESTART (-1) /* restart syscall */ macro
/freebsd-11-stable/cddl/lib/libdtrace/
H A Derrno.d230 inline int ERESTART = -1;
231 #pragma D binding "1.0" ERESTART
343 errno == ERESTART ? "restart syscall" :
/freebsd-11-stable/sys/dev/random/
H A Drandomdev.c150 if (error == ERESTART || error == EINTR)
176 if (total_read != uio->uio_resid && (error == ERESTART || error == EINTR))
266 if (nbytes != uio->uio_resid && (error == ERESTART || error == EINTR))
/freebsd-11-stable/sys/nfs/
H A Dnfs_nfssvc.c109 if (error == EINTR || error == ERESTART)
/freebsd-11-stable/sys/cam/
H A Dcam_periph.c1216 } while (error == ERESTART);
1324 if (error == ERESTART)
1509 error = ERESTART;
1528 error = ERESTART;
1571 error = ERESTART;
1639 * this freeze will be dropped as part of ERESTART.
1652 error = ERESTART;
1741 error = ERESTART;
1818 error = ERESTART;
1864 error = ERESTART;
[all...]
/freebsd-11-stable/stand/i386/libi386/
H A Dpxe.c479 return (ERESTART);
543 return (ERESTART);
569 if (ret != ERESTART)
/freebsd-11-stable/sys/riscv/riscv/
H A Dvm_machdep.c136 case ERESTART:
/freebsd-11-stable/sys/i386/cloudabi32/
H A Dcloudabi32_sysvec.c128 case ERESTART:
/freebsd-11-stable/sys/amd64/cloudabi32/
H A Dcloudabi32_sysvec.c148 case ERESTART:
/freebsd-11-stable/sys/amd64/cloudabi64/
H A Dcloudabi64_sysvec.c131 case ERESTART:
/freebsd-11-stable/sys/arm/cloudabi32/
H A Dcloudabi32_sysvec.c116 case ERESTART:
/freebsd-11-stable/sys/arm64/cloudabi64/
H A Dcloudabi64_sysvec.c108 case ERESTART:
/freebsd-11-stable/sys/net80211/
H A Dieee80211_ioctl.c2218 error = ERESTART;
2797 error = ERESTART;
2805 error = ERESTART;
2817 error = ERESTART;
2824 error = ERESTART;
2833 error = ERESTART;
2842 error = ERESTART;
2857 /* XXX ERESTART? */
2864 /* XXX ERESTART? */
2882 /* XXX ERESTART
[all...]
/freebsd-11-stable/stand/liblua/
H A Dlerrno.c150 ENTRY(ERESTART),
/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_package.c149 return (ERESTART);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dstrerror.c325 #if defined (ERESTART)
326 ENTRY(ERESTART, "ERESTART", "Interrupted system call should be restarted"),
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dstrerror.c325 #if defined (ERESTART)
326 ENTRY(ERESTART, "ERESTART", "Interrupted system call should be restarted"),
/freebsd-11-stable/sys/opencrypto/
H A Dcrypto.c845 if (result != ERESTART)
873 if (error == ERESTART) {
991 if (error == ERESTART) {
999 * that case return ERESTART so the operation
1002 error = (cap == NULL) ? ENODEV : ERESTART;
1342 if (result == ERESTART) {
1382 if (result == ERESTART) {
/freebsd-11-stable/sys/netinet/
H A Dsctp_syscalls.c291 if (auio.uio_resid != len && (error == ERESTART ||
419 if (auio.uio_resid != len && (error == ERESTART ||
547 if (auio.uio_resid != len && (error == ERESTART ||

Completed in 177 milliseconds

12345