summaryrefslogtreecommitdiff
path: root/syscall.c
diff options
context:
space:
mode:
authorRobert Morris <[email protected]>2019-06-03 17:59:17 -0400
committerRobert Morris <[email protected]>2019-06-03 17:59:17 -0400
commitcefe223bf5e4b68e5c1202f2f089a164ad656621 (patch)
treeb2bf9fdb2c94e3159ce595c6b4a88daf5c35e878 /syscall.c
parentefecbee7c0c265b0b2fe956f308e1a73cc63eda6 (diff)
downloadxv6-labs-cefe223bf5e4b68e5c1202f2f089a164ad656621.tar.gz
xv6-labs-cefe223bf5e4b68e5c1202f2f089a164ad656621.tar.bz2
xv6-labs-cefe223bf5e4b68e5c1202f2f089a164ad656621.zip
console input and sbrk
Diffstat (limited to 'syscall.c')
-rw-r--r--syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/syscall.c b/syscall.c
index bcfdcf8..10ed444 100644
--- a/syscall.c
+++ b/syscall.c
@@ -150,7 +150,7 @@ static int (*syscalls[])(void) = {
[SYS_chdir] sys_chdir,
[SYS_dup] sys_dup,
[SYS_getpid] sys_getpid,
-//[SYS_sbrk] sys_sbrk,
+[SYS_sbrk] sys_sbrk,
//[SYS_sleep] sys_sleep,
//[SYS_uptime] sys_uptime,
[SYS_open] sys_open,