From 390aec5ca22e62d128e71d1dee312a2f0a82ab68 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Fri, 19 Aug 2022 19:44:36 +0200 Subject: syscall/fs_wait: return a handle for each request --- src/user/app/tests/kernel/path.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/user/app/tests/kernel') diff --git a/src/user/app/tests/kernel/path.c b/src/user/app/tests/kernel/path.c index e25154d..5fb3123 100644 --- a/src/user/app/tests/kernel/path.c +++ b/src/user/app/tests/kernel/path.c @@ -1,6 +1,7 @@ #include "../tests.h" #include #include +#include #include static void test_path_simplify(void) { @@ -66,9 +67,9 @@ static void mount_resolve_drv(const char *path) { if (fork2_n_mount(path)) return; struct fs_wait_response res; - while (!_syscall_fs_wait(NULL, 0, &res)) { - // TODO does the first argument of _syscall_fs_respond need to be non-const? - _syscall_fs_respond((void*)path, strlen(path), 0); + while (!c0_fs_wait(NULL, 0, &res)) { + // TODO does the first argument of c0_fs_respond need to be non-const? + c0_fs_respond((void*)path, strlen(path), 0); } exit(1); } -- cgit v1.2.3