diff options
author | rsc <rsc> | 2006-09-06 18:19:11 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-09-06 18:19:11 +0000 |
commit | 2685309fb47a0f60d3b59138d8029c5d901fde91 (patch) | |
tree | cce8197ed0d7d31a4068297e58920bb3ef239164 /defs.h | |
parent | 61d03d0eeff3137a6453a773dfe8a51746804920 (diff) | |
download | xv6-labs-2685309fb47a0f60d3b59138d8029c5d901fde91.tar.gz xv6-labs-2685309fb47a0f60d3b59138d8029c5d901fde91.tar.bz2 xv6-labs-2685309fb47a0f60d3b59138d8029c5d901fde91.zip |
split syscall.c into sysfile.c and sysproc.c
Diffstat (limited to 'defs.h')
-rw-r--r-- | defs.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -42,6 +42,11 @@ int strncmp(const char*, const char*, uint); // syscall.c void syscall(void); +int fetchint(struct proc*, uint, int*); +int fetchbyte(struct proc*, uint, char*); +int fetcharg(int, void*); +int checkstring(uint); +int putint(struct proc*, uint, int); // picirq.c void pic_init(void); |