Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Dec 2009 22:15:52 +0000 (UTC)
From:      Olivier Houchard <cognet@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r200881 - head/include
Message-ID:  <200912222215.nBMMFq0j078326@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cognet
Date: Tue Dec 22 22:15:52 2009
New Revision: 200881
URL: http://svn.freebsd.org/changeset/base/200881

Log:
  Don't name parameters, for consistency with the rest of the file, and because
  it breaks third-party apps.
  
  Submitted by:	gahr

Modified:
  head/include/signal.h

Modified: head/include/signal.h
==============================================================================
--- head/include/signal.h	Tue Dec 22 21:53:19 2009	(r200880)
+++ head/include/signal.h	Tue Dec 22 22:15:52 2009	(r200881)
@@ -99,12 +99,12 @@ int	sigwaitinfo(const sigset_t * __restr
 #if __XSI_VISIBLE
 int	killpg(__pid_t, int);
 int	sigaltstack(const stack_t * __restrict, stack_t * __restrict); 
-int	sighold(int sig);
-int	sigignore(int sig);
-int	sigpause(int sigmask);
-int	sigrelse(int sig);
-void	(*sigset(int sig, void (*disp)(int)))(int);
-int	xsi_sigpause(int sig);
+int	sighold(int);
+int	sigignore(int);
+int	sigpause(int);
+int	sigrelse(int);
+void	(*sigset(int, void (*)(int)))(int);
+int	xsi_sigpause(int);
 #endif
 
 #if __XSI_VISIBLE >= 600



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200912222215.nBMMFq0j078326>