mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:57:47 +00:00
LibC: Change a couple of ASSERT_NOT_REACHED() to TODO()
Just for semantic correctness and better visibility of those unimplemented stub functions.
This commit is contained in:
parent
d64d2ff07b
commit
b42f0b9650
8 changed files with 21 additions and 14 deletions
|
@ -24,12 +24,12 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <AK/Format.h>
|
||||
#include <Kernel/API/Syscall.h>
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <setjmp.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
@ -184,8 +184,8 @@ void siglongjmp(jmp_buf env, int val)
|
|||
|
||||
int sigsuspend(const sigset_t*)
|
||||
{
|
||||
dbgprintf("FIXME: Implement sigsuspend()\n");
|
||||
ASSERT_NOT_REACHED();
|
||||
dbgln("FIXME: Implement sigsuspend()");
|
||||
TODO();
|
||||
}
|
||||
|
||||
static const char* signal_names[] = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue