Searched refs:syscall (Results 1 – 6 of 6) sorted by relevance
/libuv/src/win/ |
H A D | error.c | 35 void uv_fatal_error(const int errorno, const char* syscall) { in uv_fatal_error() argument 51 if (syscall) { in uv_fatal_error() 52 fprintf(stderr, "%s: (%d) %s", syscall, errorno, errmsg); in uv_fatal_error()
|
H A D | internal.h | 259 __declspec(noreturn) void uv_fatal_error(const int errorno, const char* syscall);
|
/libuv/src/unix/ |
H A D | random-sysctl-linux.c | 71 if (syscall(SYS__sysctl, &args) == -1) in uv__random_sysctl()
|
H A D | linux.c | 383 return syscall(__NR_copy_file_range, in uv__fs_copy_file_range() 406 rc = syscall(__NR_statx, dirfd, path, flags, mask, statxbuf); in uv__statx() 421 rc = syscall(__NR_getrandom, buf, buflen, flags); in uv__getrandom() 431 return syscall(__NR_io_uring_setup, entries, params); in uv__io_uring_setup() 443 return syscall(__NR_io_uring_enter, in uv__io_uring_enter() 454 return syscall(__NR_io_uring_register, fd, opcode, arg, nargs); in uv__io_uring_register()
|
H A D | core.c | 94 # define gettid() syscall(SYS_gettid) 613 rc = syscall(SYS_close, fd); in uv__close_nocancel() 617 return syscall(SYS_close, fd); in uv__close_nocancel()
|
/libuv/ |
H A D | ChangeLog | 379 * linux: add missing riscv syscall numbers (michalbiesek) 563 * linux: remove unused or obsolete syscall wrappers (Ben Noordhuis) 2532 * unix,fs: remove uv__utimesat() syscall fallback (Jeremiah Senkpiel) 2538 * linux: remove epoll syscall wrappers (Ben Noordhuis) 3603 * unix: don't convert stat buffer when syscall fails (Ben Noordhuis) 3899 * darwin: replace F_FULLFSYNC with fdatasync syscall (Saúl Ibarra Corretgé) 4423 * linux: intercept syscall when running under memory sanitizer (Keno Fischer) 6283 * unix: limit the number of iovecs written in a single `writev` syscall to
|
Completed in 50 milliseconds