From 9900cc737988f25db30b5876f066a78e73389205 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Thu, 5 May 2022 22:12:55 +0200 Subject: kernel: syscalls now have to explicitly save the return value thus they can opt out of doing that so the calls which might return immediately but can return later don't have to both regs_savereturn and return to the caller. and because of that, the return values of a lot of VFS things have just got way saner --- src/kernel/arch/i386/driver/serial.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kernel/arch/i386/driver/serial.h') diff --git a/src/kernel/arch/i386/driver/serial.h b/src/kernel/arch/i386/driver/serial.h index e7f9b7c..6aff142 100644 --- a/src/kernel/arch/i386/driver/serial.h +++ b/src/kernel/arch/i386/driver/serial.h @@ -11,5 +11,5 @@ size_t serial_read(char *buf, size_t len); void serial_write(const char *buf, size_t len); -int vfs_com1_accept(struct vfs_request *); +void vfs_com1_accept(struct vfs_request *); bool vfs_com1_ready(struct vfs_backend *); -- cgit v1.2.3