blob: c420a3bd675eee830b7b15713b58689aea4460be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef USER_SYSCALL_H_
#define USER_SYSCALL_H_
/* This defines the full set of system calls accessible from usermode. */
#define SYSCALL(id, fn, kernfn, argt) void fn(argt arg);
#include "kern/syscall/syscall_tbl.inc"
#undef SYSCALL
#endif
|