summaryrefslogtreecommitdiffstats
path: root/usr/syscall.h
blob: 5cc82b8ffe7682901f338be72274b09bd29f3dc1 (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 "sys/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