Files
RedBear-OS/tests/signals/kill0-self.c
T
Red Bear OS 1b3e94a20d Red Bear OS relibc baseline
From release 0.1.0 pre-patched archive.
This includes all Red Bear modifications previously maintained
as patches in local/patches/relibc/.
2026-06-27 09:19:26 +03:00

16 lines
247 B
C

#include <signal.h>
#include "../test_helpers.h"
/*
* Send signal 0 to self. This just reports whether a signal can be sent.
*/
int main()
{
int status = 0;
status = kill(getpid(), 0);
ERROR_IF(kill, status, != 0);
return EXIT_SUCCESS;
}