summaryrefslogtreecommitdiffstats
path: root/usr/syscall.h
blob: fe7843c6c6332c9e665f43600594775a01cf43aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef JOVE_USER_SYSCALL_H
#define JOVE_USER_SYSCALL_H 1

#include "abi/syscall.h"

typedef int (*syscall_handler_t)(syscall_t*);

int _syscall_handler_log(struct syscall_log *req);
intmax_t _syscall_handler_tid(syscall_t *req);

#endif