OSDN Git Service

* Makefile.am: Added new files.
[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., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, 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 #include "../io/io.h"
45
46 /* SUBROUTINE KILL(PID, SIGNAL, STATUS)
47    INTEGER, INTENT(IN) :: PID, SIGNAL
48    INTEGER(KIND=1), INTENT(OUT), OPTIONAL :: STATUS
49
50    INTEGER(KIND=1) FUNCTION KILL(PID, SIGNAL)
51    INTEGER, INTENT(IN) :: PID, SIGNAL */
52
53 #ifdef HAVE_KILL
54 extern void kill_i4_sub (GFC_INTEGER_4 *, GFC_INTEGER_4 *, GFC_INTEGER_4 *);
55 iexport_proto(kill_i4_sub);
56
57 void
58 kill_i4_sub (GFC_INTEGER_4 *pid, GFC_INTEGER_4 *signal,
59              GFC_INTEGER_4 *status)
60 {
61   int val;
62
63   val = kill (*pid, *signal);
64
65   if (status != NULL) 
66     *status = (val == 0) ? 0 : errno;
67 }
68 iexport(kill_i4_sub);
69
70 extern void kill_i8_sub (GFC_INTEGER_8 *, GFC_INTEGER_8 *, GFC_INTEGER_8 *);
71 iexport_proto(kill_i8_sub);
72
73 void
74 kill_i8_sub (GFC_INTEGER_8 *pid, GFC_INTEGER_8 *signal,
75              GFC_INTEGER_8 *status)
76 {
77   int val;
78
79   val = kill (*pid, *signal);
80
81   if (status != NULL) 
82     *status = (val == 0) ? 0 : errno;
83 }
84 iexport(kill_i8_sub);
85
86 extern GFC_INTEGER_4 kill_i4 (GFC_INTEGER_4 *, GFC_INTEGER_4 *);
87 export_proto(kill_i4);
88
89 GFC_INTEGER_4
90 kill_i4 (GFC_INTEGER_4 *pid, GFC_INTEGER_4 *signal)
91 {
92   GFC_INTEGER_4 val;
93   kill_i4_sub (pid, signal, &val);
94   return val;
95 }
96
97 extern GFC_INTEGER_8 kill_i8 (GFC_INTEGER_8 *, GFC_INTEGER_8 *);
98 export_proto(kill_i8);
99
100 GFC_INTEGER_8
101 kill_i8 (GFC_INTEGER_8 *pid, GFC_INTEGER_8 *signal)
102 {
103   GFC_INTEGER_8 val;
104   kill_i8_sub (pid, signal, &val);
105   return val;
106 }
107 #endif