From c5ce4978958762849083143d1fcbe694b44b5c51 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 28 May 2022 12:38:15 +0300 Subject: add sys_fwd and remove sys_req_* --- include/apos/syscalls.h | 4 ++-- include/apos/uapi.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/apos/syscalls.h b/include/apos/syscalls.h index e1513c4..7e2845b 100644 --- a/include/apos/syscalls.h +++ b/include/apos/syscalls.h @@ -30,8 +30,8 @@ enum { * structure of the OS, but these following syscalls are probably * required */ SYS_IPC_SERVER, /* inform kernel that process should be treated as a server */ - SYS_IPC_REQ_PROC, /* IPC request to server on behalf of process */ - SYS_IPC_REQ_THREAD, /* IPC request to server on behalf of thread */ + SYS_IPC_REQ, /* IPC request to server */ + SYS_IPC_FWD, /* IPC request forwarding */ SYS_IPC_RESP, /* IPC response from server */ /* process management */ diff --git a/include/apos/uapi.h b/include/apos/uapi.h index dc20187..9304da7 100644 --- a/include/apos/uapi.h +++ b/include/apos/uapi.h @@ -99,8 +99,8 @@ SYSCALL_DECLARE(free_timer); /* ipc */ SYSCALL_DECLARE(ipc_server); -SYSCALL_DECLARE(ipc_req_proc); -SYSCALL_DECLARE(ipc_req_thread); +SYSCALL_DECLARE(ipc_req); +SYSCALL_DECLARE(ipc_fwd); SYSCALL_DECLARE(ipc_resp); /* proc */ -- cgit v1.3