This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

__sigaction declaration



And one more internal prototype that should be moved.

Ok to commit?

Andreas

2001-02-05  Andreas Jaeger  <aj@suse.de>

	* signal/signal.h: Move __sigaction from here to...
	* include/signal.h: ...here.

============================================================
Index: include/signal.h
--- include/signal.h	2000/12/27 07:54:56	1.7
+++ include/signal.h	2001/02/05 17:21:57
@@ -7,6 +7,8 @@
 /* Now define the internal interfaces.  */
 extern __sighandler_t __bsd_signal (int __sig, __sighandler_t __handler);
 extern int __kill (__pid_t __pid, int __sig);
+extern int __sigaction (int __sig, __const struct sigaction *__restrict __act,
+			struct sigaction *__restrict __oact);
 extern int __sigblock (int __mask);
 extern int __sigsetmask (int __mask);
 extern int __sigprocmask (int __how,
============================================================
Index: signal/signal.h
--- signal/signal.h	2001/01/27 19:23:32	1.61
+++ signal/signal.h	2001/02/05 17:21:58
@@ -240,8 +240,6 @@
 extern int sigsuspend (__const sigset_t *__set) __THROW;
 
 /* Get and/or set the action for signal SIG.  */
-extern int __sigaction (int __sig, __const struct sigaction *__restrict __act,
-			struct sigaction *__restrict __oact) __THROW;
 extern int sigaction (int __sig, __const struct sigaction *__restrict __act,
 		      struct sigaction *__restrict __oact) __THROW;
 

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]