Searched refs:syscall (Results 26 - 50 of 284) sorted by relevance

1234567891011>>

/seL4-refos-master/libs/libmuslc/src/linux/
H A Dswap.c2 #include "syscall.h"
6 return syscall(SYS_swapon, path, flags);
11 return syscall(SYS_swapoff, path);
H A Dadjtimex.c2 #include "syscall.h"
6 return syscall(SYS_adjtimex, tx);
H A Dflock.c2 #include "syscall.h"
6 return syscall(SYS_flock, fd, op);
H A Diopl.c1 #include "syscall.h"
8 return syscall(SYS_iopl, level);
H A Dpersonality.c2 #include "syscall.h"
6 return syscall(SYS_personality, persona);
H A Dreboot.c2 #include "syscall.h"
6 return syscall(SYS_reboot, 0xfee1dead, 672274793, type);
H A Dsetfsgid.c2 #include "syscall.h"
7 return syscall(SYS_setfsgid, gid);
H A Dsetfsuid.c2 #include "syscall.h"
7 return syscall(SYS_setfsuid, uid);
H A Dsetns.c3 #include "syscall.h"
7 return syscall(SYS_setns, fd, nstype);
/seL4-refos-master/libs/libmuslc/src/process/
H A Dvfork.c4 #include "syscall.h"
9 /* vfork syscall cannot be made from C code */
11 return syscall(SYS_fork);
13 return syscall(SYS_clone, SIGCHLD, 0);
/seL4-refos-master/libs/libmuslc/src/signal/mips/
H A Drestore.s7 syscall
13 syscall
/seL4-refos-master/libs/libmuslc/src/stat/
H A Dchmod.c3 #include "syscall.h"
8 return syscall(SYS_chmod, path, mode);
10 return syscall(SYS_fchmodat, AT_FDCWD, path, mode);
H A Dmkdir.c3 #include "syscall.h"
8 return syscall(SYS_mkdir, path, mode);
10 return syscall(SYS_mkdirat, AT_FDCWD, path, mode);
/seL4-refos-master/libs/libmuslc/src/stdio/
H A Drename.c3 #include "syscall.h"
8 return syscall(SYS_rename, old, new);
10 return syscall(SYS_renameat, AT_FDCWD, old, AT_FDCWD, new);
/seL4-refos-master/libs/libmuslc/src/thread/mips/
H A D__unmapself.s7 syscall
10 syscall
/seL4-refos-master/libs/libmuslc/src/thread/x32/
H A D__unmapself.s7 syscall /* munmap(arg2,arg3) */
10 syscall /* exit(0) */
/seL4-refos-master/libs/libmuslc/src/thread/x86_64/
H A D__unmapself.s7 syscall /* munmap(arg2,arg3) */
10 syscall /* exit(0) */
/seL4-refos-master/libs/libmuslc/src/unistd/
H A Daccess.c3 #include "syscall.h"
8 return syscall(SYS_access, filename, amode);
10 return syscall(SYS_faccessat, AT_FDCWD, filename, amode, 0);
H A Dlink.c3 #include "syscall.h"
8 return syscall(SYS_link, existing, new);
10 return syscall(SYS_linkat, AT_FDCWD, existing, AT_FDCWD, new, 0);
H A Drmdir.c3 #include "syscall.h"
8 return syscall(SYS_rmdir, path);
10 return syscall(SYS_unlinkat, AT_FDCWD, path, AT_REMOVEDIR);
H A Dsymlink.c3 #include "syscall.h"
8 return syscall(SYS_symlink, existing, new);
10 return syscall(SYS_symlinkat, existing, AT_FDCWD, new);
/seL4-refos-master/kernel/include/
H A Dapi.h11 #include <api/syscall.h>
/seL4-refos-master/libs/libmuslc/src/misc/
H A Duname.c2 #include "syscall.h"
6 return syscall(SYS_uname, uts);
/seL4-refos-master/libs/libmuslc/src/signal/
H A Dkill.c2 #include "syscall.h"
6 return syscall(SYS_kill, pid, sig);
H A Dsigpending.c2 #include "syscall.h"
6 return syscall(SYS_rt_sigpending, set, _NSIG/8);

Completed in 110 milliseconds

1234567891011>>