1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:18:12 +00:00

UserspaceEmulator: Add support for set_thread_name

It should be noted that creating threads is still not supported.
This commit is contained in:
AnotherTest 2020-10-24 11:25:58 +03:30 committed by Andreas Kling
parent 617c5ba045
commit fcc38422c6
2 changed files with 11 additions and 0 deletions

View file

@ -152,6 +152,7 @@ private:
int virt$getsid(pid_t);
int virt$sched_setparam(int, FlatPtr);
int virt$sched_getparam(pid_t, FlatPtr);
int virt$set_thread_name(pid_t, FlatPtr, size_t);
FlatPtr allocate_vm(size_t size, size_t alignment);