mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
30 lines
558 B
C
30 lines
558 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <errno.h>
|
||
|
#include <signal.h>
|
||
|
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
|