Skip to content

Commit 4418c5b

Browse files
committed
syscalls: lowered size of syscall unique ID
1 parent 6d4635f commit 4418c5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/kernel/syscalls.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ typedef struct SyscallRequest {
2626
bool external; // set for syscalls that are handled in user space
2727
bool retry; // for async syscalls
2828

29-
uint64_t requestID; // unique random ID for user space syscalls
29+
uint16_t requestID; // unique random ID for user space syscalls
3030
uint64_t function;
3131
uint64_t params[4];
3232
uint64_t ret; // return value from the kernel to the program

0 commit comments

Comments
 (0)