summaryrefslogtreecommitdiff
path: root/syscall.c
diff options
context:
space:
mode:
authorRobert Morris <[email protected]>2019-06-04 11:31:50 -0400
committerRobert Morris <[email protected]>2019-06-04 11:31:50 -0400
commitcff3ce6e04ce4a353324630df788df21566807a6 (patch)
tree31040a8262b6de165a2f1d6cc7ead1db33e67a80 /syscall.c
parent0e131b226336808c135795f5b9d7defc5a58b2ae (diff)
downloadxv6-labs-cff3ce6e04ce4a353324630df788df21566807a6.tar.gz
xv6-labs-cff3ce6e04ce4a353324630df788df21566807a6.tar.bz2
xv6-labs-cff3ce6e04ce4a353324630df788df21566807a6.zip
more sbrk fixes
Diffstat (limited to 'syscall.c')
-rw-r--r--syscall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/syscall.c b/syscall.c
index 10ed444..ca34f2c 100644
--- a/syscall.c
+++ b/syscall.c
@@ -144,15 +144,15 @@ static int (*syscalls[])(void) = {
[SYS_wait] sys_wait,
[SYS_pipe] sys_pipe,
[SYS_read] sys_read,
-//[SYS_kill] sys_kill,
+[SYS_kill] sys_kill,
[SYS_exec] sys_exec,
[SYS_fstat] sys_fstat,
[SYS_chdir] sys_chdir,
[SYS_dup] sys_dup,
[SYS_getpid] sys_getpid,
[SYS_sbrk] sys_sbrk,
-//[SYS_sleep] sys_sleep,
-//[SYS_uptime] sys_uptime,
+[SYS_sleep] sys_sleep,
+[SYS_uptime] sys_uptime,
[SYS_open] sys_open,
[SYS_write] sys_write,
[SYS_mknod] sys_mknod,