Searched refs:syscall (Results 76 - 100 of 284) sorted by relevance

1234567891011>>

/seL4-camkes-master/projects/musllibc/src/signal/
H A Dsetitimer.c2 #include "syscall.h"
6 return syscall(SYS_setitimer, which, new, old);
/seL4-camkes-master/projects/musllibc/src/signal/x32/
H A Drestore.s6 syscall
/seL4-camkes-master/projects/musllibc/src/signal/x86_64/
H A Drestore.s6 syscall
/seL4-camkes-master/projects/musllibc/src/stat/
H A Dmkdirat.c2 #include "syscall.h"
6 return syscall(SYS_mkdirat, fd, path, mode);
H A Dlstat.c3 #include "syscall.h"
9 return syscall(SYS_lstat, path, buf);
11 return syscall(SYS_fstatat, AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);
H A Dmknod.c3 #include "syscall.h"
8 return syscall(SYS_mknod, path, mode, dev);
10 return syscall(SYS_mknodat, AT_FDCWD, path, mode, dev);
/seL4-camkes-master/projects/musllibc/src/stdio/
H A D__stdio_close.c12 return syscall(SYS_close, __aio_close(f->fd));
/seL4-camkes-master/projects/musllibc/src/thread/
H A D__futex.c2 #include "syscall.h"
6 return syscall(SYS_futex, addr, op, val, ts);
/seL4-camkes-master/projects/musllibc/src/time/
H A Dclock_getres.c2 #include "syscall.h"
6 return syscall(SYS_clock_getres, clk, ts);
H A Dclock_settime.c2 #include "syscall.h"
6 return syscall(SYS_clock_settime, clk, ts);
/seL4-camkes-master/projects/musllibc/src/unistd/
H A Dftruncate.c2 #include "syscall.h"
7 return syscall(SYS_ftruncate, fd, __SYSCALL_LL_O(length));
H A Drenameat.c2 #include "syscall.h"
6 return syscall(SYS_renameat, oldfd, old, newfd, new);
H A Dsetpgid.c2 #include "syscall.h"
6 return syscall(SYS_setpgid, pid, pgid);
H A Dsymlinkat.c2 #include "syscall.h"
6 return syscall(SYS_symlinkat, existing, fd, new);
H A Dtruncate.c2 #include "syscall.h"
7 return syscall(SYS_truncate, path, __SYSCALL_LL_O(length));
H A Dunlinkat.c2 #include "syscall.h"
6 return syscall(SYS_unlinkat, fd, path, flag);
/seL4-camkes-master/projects/musllibc/src/ipc/
H A Dmsgctl.c2 #include "syscall.h"
8 return syscall(SYS_msgctl, q, cmd | IPC_64, buf);
10 return syscall(SYS_ipc, IPCOP_msgctl, q, cmd | IPC_64, 0, buf, 0);
H A Dsemget.c4 #include "syscall.h"
15 return syscall(SYS_semget, key, n, fl);
17 return syscall(SYS_ipc, IPCOP_semget, key, n, fl);
H A Dsemop.c2 #include "syscall.h"
8 return syscall(SYS_semop, id, buf, n);
10 return syscall(SYS_ipc, IPCOP_semop, id, n, 0, buf);
H A Dsemtimedop.c3 #include "syscall.h"
9 return syscall(SYS_semtimedop, id, buf, n, ts);
11 return syscall(SYS_ipc, IPCOP_semtimedop, id, n, 0, buf, ts);
H A Dshmat.c2 #include "syscall.h"
8 return (void *)syscall(SYS_shmat, id, addr, flag);
14 ret = syscall(SYS_ipc, IPCOP_shmat, id, flag, &addr, addr);
H A Dshmctl.c2 #include "syscall.h"
8 return syscall(SYS_shmctl, id, cmd | IPC_64, buf);
10 return syscall(SYS_ipc, IPCOP_shmctl, id, cmd | IPC_64, 0, buf, 0);
H A Dshmget.c3 #include "syscall.h"
10 return syscall(SYS_shmget, key, size, flag);
12 return syscall(SYS_ipc, IPCOP_shmget, key, size, flag);
/seL4-camkes-master/projects/musllibc/src/linux/
H A Dcache.c1 #include "syscall.h"
7 return syscall(SYS_cacheflush, addr, len, op);
15 return syscall(SYS_cachectl, addr, len, op);
H A Dfanotify.c1 #include "syscall.h"
6 return syscall(SYS_fanotify_init, flags, event_f_flags);
12 return syscall(SYS_fanotify_mark, fanotify_fd, flags, __SYSCALL_LL_E(mask), dfd, pathname);

Completed in 70 milliseconds

1234567891011>>