diff options
author | Ayma-n <aymanbt14@gmail.com> | 2024-01-28 23:09:02 -0500 |
---|---|---|
committer | Ayma-n <aymanbt14@gmail.com> | 2024-01-28 23:09:02 -0500 |
commit | 6d2c24b95ea2771d00b2e41367a18b0f06594bc8 (patch) | |
tree | 6f6874a2d71e68e1c6d19ee1487884af0aedb7f6 /kernel/api/syscall.c | |
parent | 6bd9a350148802b027d6b4d717358dc824d3d528 (diff) |
Fix make nyi names
Diffstat (limited to 'kernel/api/syscall.c')
-rw-r--r-- | kernel/api/syscall.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |