Kernel: Use Userspace<T> for the setsockopt syscall

This commit is contained in:
Brian Gianforcaro 2020-08-07 00:18:20 -07:00 committed by Andreas Kling
commit 6920d5f423
Notes: sideshowbarker 2024-07-19 04:09:49 +09:00
7 changed files with 12 additions and 11 deletions

View file

@ -314,7 +314,7 @@ struct SC_setsockopt_params {
int sockfd;
int level;
int option;
const void* value;
Userspace<const void*> value;
socklen_t value_size;
};