bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-gnulib] new module "raise" from coreutils


From: Paul Eggert
Subject: [Bug-gnulib] new module "raise" from coreutils
Date: Fri, 06 Aug 2004 14:49:19 -0700
User-agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux)

I installed this:

2004-08-06  Paul Eggert  <address@hidden>

        * lib/raise.c, modules/raise: New files.

--- /dev/null   2003-03-18 13:55:57 -0800
+++ modules/raise       2004-08-06 14:46:16 -0700
@@ -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
+
--- /dev/null   2003-03-18 13:55:57 -0800
+++ lib/raise.c 2004-08-04 23:32:14 -0700
@@ -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);
+}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]