From: cuz Date: Sun, 16 Mar 2003 14:27:24 +0000 (+0000) Subject: Added signal-test.c X-Git-Tag: V2.12.0~1669 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=59bf8611c0d5602541f63451c8ffcb34a3900c0c;p=cc65 Added signal-test.c git-svn-id: svn://svn.cc65.org/cc65/trunk@2023 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/testcode/lib/files.txt b/testcode/lib/files.txt index f89751b33..232fbb2ad 100644 --- a/testcode/lib/files.txt +++ b/testcode/lib/files.txt @@ -14,4 +14,5 @@ getsp.s - helper routine for ft.c joy-test.c - joystick driver test program posixio-test.c - test POSIX file i/o routines (open/read/write/close) seek.c - test lseek()/fseek()/ftell() +signal-test.c - small test program for signal/raise time-test.c - test the time/mktime/gmtime/asctime functions diff --git a/testcode/lib/signal-test.c b/testcode/lib/signal-test.c new file mode 100644 index 000000000..4e34a281d --- /dev/null +++ b/testcode/lib/signal-test.c @@ -0,0 +1,29 @@ +#include +#include +#include +#include + + +void __fastcall__ sighandler (int sig) +{ + printf ("Got signal #%d\n", sig); +} + + + +int main (void) +{ + if (signal (SIGSEGV, sighandler) == SIG_ERR) { + printf ("signal failure %d: %s\n", errno, strerror (errno)); + return 1; + } + printf ("About to raise SIGSEGV...\n"); + raise (SIGSEGV); + printf ("Back from signal handler\n"); + printf ("About to raise SIGILL...\n"); + raise (SIGILL); + printf ("Back from signal handler\n"); + return 0; +} + +