~ubuntu-branches/ubuntu/oneiric/clif/oneiric

« back to all changes in this revision

Viewing changes to sigig_posix.c

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Bunk
  • Date: 2002-01-25 14:05:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020125140549-v5mmddxqlcrgzhd2
Tags: upstream-0.93
ImportĀ upstreamĀ versionĀ 0.93

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Clif - A C-like Interpreter Framework
 
3
    Copyright (C) 1992 - 1998 T. Hruz, L. Koren
 
4
 
 
5
    This program is free software; you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation; either version 2 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program; if not, write to the Free Software
 
17
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
 
 
19
*/
 
20
/*
 
21
 * sigig_posix.c
 
22
 *
 
23
 * Ignores interrupts in a fork-ed process.
 
24
 * It is used from rw.c file.
 
25
 */
 
26
 
 
27
#include <stdio.h>
 
28
#include <signal.h>
 
29
 
 
30
static struct sigaction act, oact;
 
31
 
 
32
#ifndef PROTO
 
33
#if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined(__STDC__)
 
34
#define PROTO(ARGS) ARGS
 
35
#else
 
36
#define PROTO(ARGS) ()
 
37
#endif 
 
38
#endif
 
39
 
 
40
void mysigignore PROTO((void));
 
41
 
 
42
void mysigignore()
 
43
{
 
44
 act.sa_handler = SIG_IGN;
 
45
 sigemptyset(&act.sa_mask);
 
46
 act.sa_flags = 0;
 
47
 if (sigaction (SIGINT, &act, &oact) < 0)
 
48
   perror ("sigaction");
 
49
}