mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +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
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