mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
Kernel+LibC+UE: Implement usleep() via sys$clock_nanosleep()
This doesn't need to be its own syscall. Thanks @BenWiederhake for the idea. :^)
This commit is contained in:
parent
95ed363b15
commit
f857f3ce4c
Notes:
sideshowbarker
2024-07-19 03:00:22 +09:00
Author: https://github.com/awesomekling
Commit: f857f3ce4c
5 changed files with 4 additions and 22 deletions
|
@ -117,7 +117,6 @@ namespace Kernel {
|
|||
S(poll) \
|
||||
S(rmdir) \
|
||||
S(chmod) \
|
||||
S(usleep) \
|
||||
S(socket) \
|
||||
S(bind) \
|
||||
S(accept) \
|
||||
|
@ -241,7 +240,7 @@ struct ImmutableBufferArgument {
|
|||
};
|
||||
|
||||
struct StringListArgument {
|
||||
Userspace<StringArgument*> strings { };
|
||||
Userspace<StringArgument*> strings {};
|
||||
size_t length { 0 };
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue