mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
LibC: Add sigsuspend() stub.
This commit is contained in:
parent
52f135fe13
commit
02033873b7
1 changed files with 6 additions and 0 deletions
|
@ -155,4 +155,10 @@ void siglongjmp(jmp_buf env, int val)
|
|||
longjmp(env, val);
|
||||
}
|
||||
|
||||
int sigsuspend(const sigset_t*)
|
||||
{
|
||||
dbgprintf("FIXME: Implement sigsuspend()\n");
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue