projects
/
barrelfish
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
T119: implement syscall and monitor interface to debug_print_capabilities
[barrelfish]
/
kernel
/
arch
/
x86_64
/
syscall.c
diff --git
a/kernel/arch/x86_64/syscall.c
b/kernel/arch/x86_64/syscall.c
index
f22d939
..
fc5893c
100644
(file)
--- a/
kernel/arch/x86_64/syscall.c
+++ b/
kernel/arch/x86_64/syscall.c
@@
-1260,6
+1260,11
@@
struct sysret sys_syscall(uint64_t syscall, uint64_t arg0, uint64_t arg1,
}
break;
+ case SYSCALL_DEBUG_PRINT_CAPABILITIES: {
+ retval = sys_debug_print_capabilities();
+ break;
+ }
+
default:
printk(LOG_ERR, "sys_syscall: Illegal system call! "
"(0x%lx, 0x%lx, 0x%lx)\n", syscall, arg0, arg1);