From 6d2c24b95ea2771d00b2e41367a18b0f06594bc8 Mon Sep 17 00:00:00 2001 From: Ayma-n Date: Sun, 28 Jan 2024 23:09:02 -0500 Subject: Fix make nyi names --- kernel/api/syscall.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kernel/api/syscall.c') diff --git a/kernel/api/syscall.c b/kernel/api/syscall.c index 1be5276..ed771ac 100644 --- a/kernel/api/syscall.c +++ b/kernel/api/syscall.c @@ -69,7 +69,7 @@ void syscall_init(void) { intr_register(INTR_SYSCALL, syscall_handler); } */ static long sys_read(read_args_t *args) { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: sys_read"); return -1; } @@ -84,7 +84,7 @@ static long sys_read(read_args_t *args) */ static long sys_write(write_args_t *args) { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: sys_write"); return -1; } @@ -100,7 +100,7 @@ static long sys_write(write_args_t *args) */ static long sys_getdents(getdents_args_t *args) { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: sys_getdents"); return -1; } -- cgit v1.2.3-70-g09d2