mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:28:12 +00:00
Kernel: Use Userspace<T> in setkeymap syscall
This commit is contained in:
parent
e67d0c9eef
commit
ba4cf59d04
3 changed files with 6 additions and 6 deletions
|
@ -345,10 +345,10 @@ struct SC_futex_params {
|
|||
};
|
||||
|
||||
struct SC_setkeymap_params {
|
||||
const u32* map;
|
||||
const u32* shift_map;
|
||||
const u32* alt_map;
|
||||
const u32* altgr_map;
|
||||
Userspace<const u32*> map;
|
||||
Userspace<const u32*> shift_map;
|
||||
Userspace<const u32*> alt_map;
|
||||
Userspace<const u32*> altgr_map;
|
||||
};
|
||||
|
||||
struct SC_create_thread_params {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue