mirror of
https://github.com/SmallPond/MIT6.828_OS.git
synced 2026-04-28 21:01:11 +08:00
LAB 4 IS DONE.
This commit is contained in:
11
lab/kern/syscall.h
Normal file
11
lab/kern/syscall.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef JOS_KERN_SYSCALL_H
|
||||
#define JOS_KERN_SYSCALL_H
|
||||
#ifndef JOS_KERNEL
|
||||
# error "This is a JOS kernel header; user programs should not #include it"
|
||||
#endif
|
||||
|
||||
#include <inc/syscall.h>
|
||||
|
||||
int32_t syscall(uint32_t num, uint32_t a1, uint32_t a2, uint32_t a3, uint32_t a4, uint32_t a5);
|
||||
|
||||
#endif /* !JOS_KERN_SYSCALL_H */
|
||||
Reference in New Issue
Block a user