1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 10:17:35 +00:00

Kernel: Use Userspace<T> for the shbuf_get syscall

This commit is contained in:
Brian Gianforcaro 2020-08-09 15:30:11 -07:00 committed by Andreas Kling
parent e073f2b59e
commit c8ae244ab8
2 changed files with 2 additions and 2 deletions

View file

@ -315,7 +315,7 @@ public:
int sys$shbuf_create(int, void** buffer);
int sys$shbuf_allow_pid(int, pid_t peer_pid);
int sys$shbuf_allow_all(int);
void* sys$shbuf_get(int shbuf_id, size_t* size);
void* sys$shbuf_get(int shbuf_id, Userspace<size_t*> size);
int sys$shbuf_release(int shbuf_id);
int sys$shbuf_seal(int shbuf_id);
int sys$shbuf_set_volatile(int shbuf_id, bool);