Home
last modified time | relevance | path

Searched refs:safe_syscall3 (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/bsd-user/freebsd/
H A Dos-syscall.c47 safe_syscall3(int, open, const char *, path, int, flags, mode_t, mode);
51 safe_syscall3(ssize_t, read, int, fd, void *, buf, size_t, nbytes);
54 safe_syscall3(ssize_t, readv, int, fd, const struct iovec *, iov, int, iovcnt);
58 safe_syscall3(ssize_t, write, int, fd, void *, buf, size_t, nbytes);
61 safe_syscall3(ssize_t, writev, int, fd, const struct iovec *, iov, int, iovcnt);
/openbmc/qemu/bsd-user/
H A Dsyscall_defs.h492 #define safe_syscall3(type, name, type1, arg1, type2, arg2, type3, arg3) \ macro