*** empty log message ***
authorJim Meyering <jim@meyering.net>
Sun, 10 Nov 2002 09:44:05 +0000 (09:44 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 10 Nov 2002 09:44:05 +0000 (09:44 +0000)
lib/ChangeLog
lib/raise.c [new file with mode: 0644]

index af76690..5ea90eb 100644 (file)
@@ -1,3 +1,7 @@
+2002-11-10  Jim Meyering  <jim@meyering.net>
+
+       * raise.c: New file.
+
 2002-11-08  Paul Eggert  <eggert@twinsun.com>
 
        * human.c (human_readable): Revamp to avoid warning about unused
diff --git a/lib/raise.c b/lib/raise.c
new file mode 100644 (file)
index 0000000..5a6e0e6
--- /dev/null
@@ -0,0 +1,33 @@
+/* Provide a non-threads replacement for the POSIX raise function.
+   Copyright (C) 2002 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>
+
+/* Undefine raise here so any system prototype is not redefined
+   to be a prototype for rpl_raise.  */
+#undef raise
+
+#include <sys/types.h>
+#include <signal.h>
+
+int
+rpl_raise (int sig)
+{
+  kill (getpid (), sig)
+}