summaryrefslogtreecommitdiff
path: root/src/init/syscalls.c
diff options
context:
space:
mode:
authordzwdz2021-09-05 18:01:41 +0200
committerdzwdz2021-09-05 18:01:41 +0200
commitd6c1dceba2511fa2edf839942b237d3a27bb9535 (patch)
treedc30096397bc249e0b0ed68d92d44206762240ee /src/init/syscalls.c
parent9b720cbc827956643a100b29e4d36ca77b1ea5b0 (diff)
remove the fd_ / fs_ prefixes from syscall names
Diffstat (limited to 'src/init/syscalls.c')
-rw-r--r--src/init/syscalls.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/init/syscalls.c b/src/init/syscalls.c
index ebf174e..730a243 100644
--- a/src/init/syscalls.c
+++ b/src/init/syscalls.c
@@ -17,22 +17,22 @@ int _syscall_await(user_ptr buf, int len) {
return _syscall(_SYSCALL_AWAIT, (int)buf, (int)len, 0);
}
-handle_t _syscall_fs_open(const user_ptr path, int len) {
- return _syscall(_SYSCALL_FS_OPEN, (int)path, len, 0);
+handle_t _syscall_open(const user_ptr path, int len) {
+ return _syscall(_SYSCALL_OPEN, (int)path, len, 0);
}
-int _syscall_fd_mount(handle_t handle, const user_ptr path, int len) {
- return _syscall(_SYSCALL_FD_MOUNT, handle, (int)path, len);
+int _syscall_mount(handle_t handle, const user_ptr path, int len) {
+ return _syscall(_SYSCALL_MOUNT, handle, (int)path, len);
}
-int _syscall_fd_read(handle_t handle, user_ptr buf, int len) {
- return _syscall(_SYSCALL_FD_READ, handle, (int)buf, len);
+int _syscall_read(handle_t handle, user_ptr buf, int len) {
+ return _syscall(_SYSCALL_READ, handle, (int)buf, len);
}
-int _syscall_fd_write(handle_t handle, user_ptr buf, int len) {
- return _syscall(_SYSCALL_FD_WRITE, handle, (int)buf, len);
+int _syscall_write(handle_t handle, user_ptr buf, int len) {
+ return _syscall(_SYSCALL_WRITE, handle, (int)buf, len);
}
-int _syscall_fd_close(handle_t handle) {
- return _syscall(_SYSCALL_FD_CLOSE, handle, 0, 0);
+int _syscall_close(handle_t handle) {
+ return _syscall(_SYSCALL_CLOSE, handle, 0, 0);
}