summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-08-06 21:48:01 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-08-06 21:48:01 +0000
commit26e5e93553a8147eb16489a90c08823b7faca8f5 (patch)
tree392e012ecf69b0a350d6d14f00b4b5518fcd25d9
parent74d8ea7d7e6ddae0710eb0e158da06c8209b3805 (diff)
downloadgnulib-26e5e93553a8147eb16489a90c08823b7faca8f5.tar.gz
Merge from coreutils.
-rw-r--r--lib/raise.c32
-rw-r--r--modules/raise18
2 files changed, 50 insertions, 0 deletions
diff --git a/lib/raise.c b/lib/raise.c
new file mode 100644
index 0000000000..b04e3e3eb2
--- /dev/null
+++ b/lib/raise.c
@@ -0,0 +1,32 @@
+/* Provide a non-threads replacement for the POSIX raise function.
+ Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+
+/* written by Jim Meyering */
+
+#include <config.h>
+
+#include <sys/types.h>
+#include <signal.h>
+#if HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
+int
+raise (int sig)
+{
+ return kill (getpid (), sig);
+}
diff --git a/modules/raise b/modules/raise
new file mode 100644
index 0000000000..81677e35d9
--- /dev/null
+++ b/modules/raise
@@ -0,0 +1,18 @@
+Description:
+Send a signal to the executing process.
+
+Files:
+lib/raise.c
+
+Depends-on:
+
+configure.ac:
+AC_REPLACE_FUNCS(raise)
+
+Makefile.am:
+
+Include:
+
+Maintainer:
+Jim Meyering
+