signals.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Dec 2008 17:57:54 +0100
changeset 3 820ed7fb9314
parent 0 af501b0c1716
child 9 c3fecc82ade6
permissions -rw-r--r--
database, gauss, lotto, mem2swap, prog_limit moved to demos committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 *     $Id: signals.c,v 1.1.1.1 2008-04-28 17:32:53 mbroeker Exp $
 * $Source: /development/c/demos/signals.c,v $
 *
 */

#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 500
#endif

#include <stdio.h>
#include <stdlib.h>
#include <signal.h>

void sigproc ()
{
    signal (SIGINT, sigproc);
    printf ("I received the SIGINT Signal\n");
}

void sigquit ()
{
    printf ("I received the SIGQUIT Signal\n");
    /*
     * This kills the process and subprocesses
     */
    kill (-1, SIGKILL);
    /*
     * ^^ can not be reached
     */
    exit (0);
}

int main (int argc, char **argv)
{
    signal (SIGINT, sigproc);
    signal (SIGQUIT, sigquit);

    printf ("PRESS CTRL-\\ to quit\n");
    for (;;);

    return EXIT_SUCCESS;
}