diff options
author | Frans Kaashoek <[email protected]> | 2019-07-17 05:53:34 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2019-07-17 05:53:34 -0400 |
commit | ce53416f4970ebb137c8e66dc75488cfefaf084d (patch) | |
tree | 38d7139149600bba4ca478c6b3c99852e315f9d4 /kernel/syscall.c | |
parent | 2f22a3ed6a8dbdd4dcfb2c0a43dc854a36a59cfc (diff) | |
download | xv6-labs-ce53416f4970ebb137c8e66dc75488cfefaf084d.tar.gz xv6-labs-ce53416f4970ebb137c8e66dc75488cfefaf084d.tar.bz2 xv6-labs-ce53416f4970ebb137c8e66dc75488cfefaf084d.zip |
Delete x86 comment
Diffstat (limited to 'kernel/syscall.c')
-rw-r--r-- | kernel/syscall.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/kernel/syscall.c b/kernel/syscall.c index a054da2..7ace671 100644 --- a/kernel/syscall.c +++ b/kernel/syscall.c @@ -7,12 +7,6 @@ #include "syscall.h" #include "defs.h" -// User code makes a system call with INT T_SYSCALL. -// System call number in %eax. -// Arguments on the stack, from the user call to the C -// library system call function. The saved user %esp points -// to a saved program counter, and then the first argument. - // Fetch the int at addr from the current process. int fetchint(uint64 addr, int *ip) |