OSDN Git Service

2006-10-05 Erik Edelmann <edelmann@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / kill.c
1 /* Implementation of the KILL g77 intrinsic.
2    Copyright (C) 2005 Free Software Foundation, Inc.
3    Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>
4
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
11
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file.  (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combine
19 executable.)
20
21 Libgfortran is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 GNU General Public License for more details.
25
26 You should have received a copy of the GNU General Public
27 License along with libgfortran; see the file COPYING.  If not,
28 write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA.  */
30
31 #include "config.h"
32 #include "libgfortran.h"
33
34 #ifdef HAVE_SYS_TYPES_H
35 #include <sys/types.h>
36 #endif
37
38 #ifdef HAVE_SIGNAL_H
39 #include <signal.h>
40 #endif
41
42 #include <errno.h>
43
44 /* SUBROUTINE KILL(PID, SIGNAL, STATUS)
45    INTEGER, INTENT(IN) :: PID, SIGNAL
46    INTEGER(KIND=1), INTENT(OUT), OPTIONAL :: STATUS
47
48    INTEGER(KIND=1) FUNCTION KILL(PID, SIGNAL)
49    INTEGER, INTENT(IN) :: PID, SIGNAL */
50
51 #ifdef HAVE_KILL
52 extern void kill_i4_sub (GFC_INTEGER_4 *, GFC_INTEGER_4 *, GFC_INTEGER_4 *);
53 iexport_proto(kill_i4_sub);
54
55 void
56 kill_i4_sub (GFC_INTEGER_4 *pid, GFC_INTEGER_4 *signal,
57              GFC_INTEGER_4 *status)
58 {
59   int val;
60
61   val = kill (*pid, *signal);
62
63   if (status != NULL) 
64     *status = (val == 0) ? 0 : errno;
65 }
66 iexport(kill_i4_sub);
67
68 extern void kill_i8_sub (GFC_INTEGER_8 *, GFC_INTEGER_8 *, GFC_INTEGER_8 *);
69 iexport_proto(kill_i8_sub);
70
71 void
72 kill_i8_sub (GFC_INTEGER_8 *pid, GFC_INTEGER_8 *signal,
73              GFC_INTEGER_8 *status)
74 {
75   int val;
76
77   val = kill (*pid, *signal);
78
79   if (status != NULL) 
80     *status = (val == 0) ? 0 : errno;
81 }
82 iexport(kill_i8_sub);
83
84 extern GFC_INTEGER_4 kill_i4 (GFC_INTEGER_4 *, GFC_INTEGER_4 *);
85 export_proto(kill_i4);
86
87 GFC_INTEGER_4
88 kill_i4 (GFC_INTEGER_4 *pid, GFC_INTEGER_4 *signal)
89 {
90   GFC_INTEGER_4 val;
91   kill_i4_sub (pid, signal, &val);
92   return val;
93 }
94
95 extern GFC_INTEGER_8 kill_i8 (GFC_INTEGER_8 *, GFC_INTEGER_8 *);
96 export_proto(kill_i8);
97
98 GFC_INTEGER_8
99 kill_i8 (GFC_INTEGER_8 *pid, GFC_INTEGER_8 *signal)
100 {
101   GFC_INTEGER_8 val;
102   kill_i8_sub (pid, signal, &val);
103   return val;
104 }
105 #endif