From 8625003ed7f688a62988f03cc6987574b9d591d2 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Tue, 24 Aug 2021 16:49:23 +0200 Subject: remove _syscall_debug_log, as it's not needed anymore --- src/kernel/syscalls.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/kernel/syscalls.h') 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); -- cgit v1.2.3