From 80b2c1c2ab36b4ddb030e135bcacf1f30db362d2 Mon Sep 17 00:00:00 2001
From: dzwdz
Date: Thu, 9 Sep 2021 21:14:26 +0200
Subject: basic _syscall_fs_wait() impl, doesn't pass the req yet

---
 src/shared/syscalls.h | 3 +++
 1 file changed, 3 insertions(+)

(limited to 'src/shared/syscalls.h')

diff --git a/src/shared/syscalls.h b/src/shared/syscalls.h
index 29836b0..7b130c1 100644
--- a/src/shared/syscalls.h
+++ b/src/shared/syscalls.h
@@ -21,6 +21,7 @@ enum {
 	_SYSCALL_CLOSE,
 
 	_SYSCALL_FS_CREATE,
+	_SYSCALL_FS_WAIT,
 };
 
 /** Kills the current process.
@@ -50,3 +51,5 @@ int _syscall_close(handle_t);
  * @param back a pointer to a handle_t which will store the back pointer
  */
 handle_t _syscall_fs_create(user_ptr back);
+
+int _syscall_fs_wait(handle_t back, user_ptr info);
-- 
cgit v1.2.3