13#include <sys/select.h>
39 static long do_sys_vfs_mount(
const char *device,
const char *mount_point,
const char *fs_type,
const char *options);
58 static __attribute__((__noreturn__))
void do_sys_signal_return(
void *sp);
61 static int do_sys_io_pselect(
int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
const struct timespec *timeout,
const sigset_t *sigmask);
83#define define_syscall(name) SyscallEntry::do_sys_##name
void(* thread_entry_t)(void *arg)
static off_t do_sys_io_seek(fd_t fd, off_t offset, io_seek_whence_t whence)
static fd_t do_sys_vfs_openat(fd_t dirfd, const char *file_path, u64 flags)
static fd_t do_sys_ipc_connect(const char *name, size_t buffer_size)
static long do_sys_thread_setname(tid_t tid, const char *name)
static void do_sys_poweroff(bool reboot, u32 magic)
static bool do_sys_dmabuf_alloc(size_t n_pages, ptr_t *out_paddr, ptr_t *out_vaddr)
static long do_sys_vfs_fchmodat(fd_t dirfd, const char *path, int mode, u64 flags)
static pid_t do_sys_spawn(const char *file_path, const char *const *argv, const char *const *envp)
static tid_t do_sys_create_thread(const char *name, thread_entry_t entry, void *arg, size_t stack_size, void *stack)
static long do_sys_signal_thread(tid_t tid, signal_t signum)
static tid_t do_sys_get_tid(void)
static size_t do_sys_vfs_list_dir(fd_t fd, char *buffer, size_t buffer_size)
static long do_sys_signal_process(pid_t pid, signal_t signum)
static fd_t do_sys_ipc_accept(fd_t fd)
static long do_sys_fd_manipulate(fd_t fd, u64 cmd, void *arg)
static long do_sys_vfs_symlink(const char *link_path, const char *target)
static long do_sys_vfs_chdirat(fd_t dirfd, const char *path)
static bool do_sys_signal_register(signal_t signum, const sigaction_t *action)
static long do_sys_vfs_unmount(const char *mount_point)
static long do_sys_vfs_unlinkat(fd_t dirfd, const char *path)
static u64 do_sys_arch_syscall(u64 nr, u64 arg1, u64 arg2, u64 arg3, u64 arg4)
static pid_t do_sys_get_pid(void)
static int do_sys_io_pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct timespec *timeout, const sigset_t *sigmask)
static bool do_sys_munmap(void *addr, size_t size)
static fd_t do_sys_io_dup2(fd_t old_fd, fd_t new_fd)
static size_t do_sys_io_write(fd_t fd, const void *buffer, size_t size)
static __attribute__((__noreturn__)) void do_sys_signal_return(void *sp)
static ssize_t do_sys_thread_getname(tid_t tid, char *buf, size_t buf_size)
static long do_sys_execveat(fd_t dirfd, const char *file_path, const char *const *argv, const char *const *envp, u64 flags)
static bool do_sys_io_close(fd_t fd)
static size_t do_sys_io_read(fd_t fd, void *buffer, size_t size)
static bool do_sys_wait_for_thread(tid_t tid)
static long do_sys_vfs_fstatat(fd_t dirfd, const char *file_path, file_stat_t *stat_buf, u64 flags)
static bool do_sys_futex_wait(futex_word_t *futex, u32 val)
static pid_t do_sys_fork(void)
static __attribute__((__noreturn__)) void do_sys_thread_exit(void)
static fd_t do_sys_memfd_create(const char *name, u64 flags)
static void * do_sys_mmap_anonymous(ptr_t hint_addr, size_t size, mem_perm_t perm, u64 flags)
static ssize_t do_sys_io_readv(fd_t fd, const struct iovec *iov, int iov_count)
static bool do_sys_dmabuf_unshare(ptr_t paddr, size_t size, void *vaddr)
static bool do_sys_dmabuf_share(void *buf, size_t bufsize, ptr_t *out_paddr)
static bool do_sys_dmabuf_free(ptr_t vaddr, ptr_t paddr)
static fd_t do_sys_io_dup(fd_t fd)
static long do_sys_pipe(fd_t *out_read_fd, fd_t *out_write_fd, u64 flags)
static long do_sys_clock_gettimeofday(struct timespec *tv)
static long do_sys_vfs_fsync(fd_t fd, bool data_only)
static void do_sys_yield_cpu(void)
static fd_t do_sys_ipc_create(const char *name, size_t max_pending_connections)
static pid_t do_sys_wait_for_process(pid_t pid, u32 *exit_code, u64 flags)
static long do_sys_vfs_mkdir(const char *path)
static bool do_sys_futex_wake(futex_word_t *futex, size_t count)
static __attribute__((__noreturn__)) void do_sys_exit(u32 exit_code)
static ssize_t do_sys_vfs_getcwd(char *buf, size_t buf_size)
static void * do_sys_mmap_file(ptr_t hint_addr, size_t size, mem_perm_t perm, u64 flags, fd_t fd, off_t offset)
static int do_sys_io_poll(struct pollfd *fds, nfds_t nfds, int timeout)
static ssize_t do_sys_vfs_readlinkat(fd_t dirfd, const char *path, char *buf, size_t buf_size)
static pid_t do_sys_get_parent_pid(void)
static long do_sys_vfs_mount(const char *device, const char *mount_point, const char *fs_type, const char *options)
static off_t do_sys_io_tell(fd_t fd)
static long do_sys_clock_msleep(u64 ms)
static bool do_sys_vm_protect(void *addr, size_t size, mem_perm_t perm)
static long do_sys_io_pread(fd_t fd, void *buf, size_t count, off_t offset)
static long do_sys_signal_mask_op(int how, const sigset_t *set, sigset_t *oldset)