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 _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
