mirror of
https://github.com/drasko/codezero.git
synced 2026-04-17 17:29:04 +02:00
Cleanup: Moved all l4_ipc_return() calls to uppermost handler routine.
Now all system calls can simply return their final values and they will be sent to client parties from a single location. Should have had this simple cleanup a long time ago.
This commit is contained in:
@@ -22,8 +22,8 @@ struct sys_mmap_args {
|
||||
off_t offset;
|
||||
};
|
||||
|
||||
int sys_mmap(l4id_t sender, void *start, size_t length, int prot,
|
||||
int flags, int fd, off_t offset);
|
||||
void *sys_mmap(l4id_t sender, void *start, size_t length, int prot,
|
||||
int flags, int fd, off_t offset);
|
||||
|
||||
int sys_munmap(l4id_t sender, void *vaddr, unsigned long size);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user