mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 12:06:07 +00:00
LibC: Add stub implementation for sigsuspend
Currently, ZSH tries to call this function and it always asserts, so adding a stub to allow ZSH at least open.
This commit is contained in:
parent
0f5a23d082
commit
4850cf9069
Notes:
sideshowbarker
2024-07-18 12:31:41 +09:00
Author: https://github.com/Thihup
Commit: 4850cf9069
Pull-request: https://github.com/SerenityOS/serenity/pull/7808
Reviewed-by: https://github.com/gunnarbeutner ✅
Reviewed-by: https://github.com/linusg
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ void siglongjmp(jmp_buf env, int val)
|
||||||
int sigsuspend(const sigset_t*)
|
int sigsuspend(const sigset_t*)
|
||||||
{
|
{
|
||||||
dbgln("FIXME: Implement sigsuspend()");
|
dbgln("FIXME: Implement sigsuspend()");
|
||||||
TODO();
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char* signal_names[] = {
|
static const char* signal_names[] = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue