summaryrefslogtreecommitdiff
path: root/src/kernel/syscalls.h
diff options
context:
space:
mode:
authordzwdz2021-08-24 16:49:23 +0200
committerdzwdz2021-08-24 16:49:23 +0200
commit8625003ed7f688a62988f03cc6987574b9d591d2 (patch)
tree999769ef7e8d8a2eefc3b5cdced4fc2c32f4f46b /src/kernel/syscalls.h
parent9958bdacfa51b5d8eee386b863cdcc2d76f44f4a (diff)
remove _syscall_debug_log, as it's not needed anymore
Diffstat (limited to 'src/kernel/syscalls.h')
-rw-r--r--src/kernel/syscalls.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/kernel/syscalls.h b/src/kernel/syscalls.h
index d8ca5c3..c390c73 100644
--- a/src/kernel/syscalls.h
+++ b/src/kernel/syscalls.h
@@ -17,8 +17,6 @@ enum {
_SYSCALL_FD_READ,
_SYSCALL_FD_WRITE,
_SYSCALL_FD_CLOSE,
-
- _SYSCALL_DEBUGLOG
};
/** Kills the current process.
@@ -43,8 +41,3 @@ int _syscall_mount(const char *path, int len, fd_t fd);
int _syscall_fd_read(fd_t fd, char *buf, int len);
int _syscall_fd_write(fd_t fd, char *buf, int len);
int _syscall_fd_close(fd_t fd);
-
-/** Prints a message to the debug console.
- * @return the amount of bytes written (can be less than len)
- */
-int _syscall_debuglog(const char *msg, size_t len);