blob: 83d2d46876e1ad6b3fbe06b6d5f61f7d38dc98b3 [file] [log] [blame]
#include <signal.h>
#include <unistd.h>
#include <stdlib.h>
void foo (void);
void bar (void);
void subroutine (int);
void handler (int);
void have_a_very_merry_interrupt (void);
main ()
{
puts ("Starting up");
foo (); /* Put a breakpoint on foo() and call it to see a dummy frame */
have_a_very_merry_interrupt ();
puts ("Shutting down");
}
void
foo (void)
{
puts ("hi in foo");
}
void
bar (void)
{
char *nuller = 0;
puts ("hi in bar");
*nuller = 'a'; /* try to cause a segfault */
}
void
handler (int sig)
{
subroutine (sig);
}
void
subroutine (int in)
{
while (in < 100)
in++;
}
void
have_a_very_merry_interrupt (void)
{
puts ("Waiting to get a signal");
signal (SIGALRM, handler);
alarm (1);
sleep (2); /* We'll receive that signal while sleeping */
}