FreeBSD Bugzilla – Attachment 172970 Details for
Bug 211365
[patch] fix man page sigaction(2)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch for /usr/src/lib/libc/sys/sigaction.2
slsv-diff-sigaction (text/plain), 802 bytes, created by
Konstantin Stroykovskiy
on 2016-07-25 13:42:43 UTC
(
hide
)
Description:
patch for /usr/src/lib/libc/sys/sigaction.2
Filename:
MIME Type:
Creator:
Konstantin Stroykovskiy
Created:
2016-07-25 13:42:43 UTC
Size:
802 bytes
patch
obsolete
>--- /usr/src/lib/libc/sys/sigaction.2.orig 2016-07-25 15:55:24.046963000 +0000 >+++ /usr/src/lib/libc/sys/sigaction.2 2016-07-25 15:59:39.861497000 +0000 >@@ -40,11 +40,15 @@ > .In signal.h > .Bd -literal > struct sigaction { >- void (*sa_handler)(int); >- void (*sa_sigaction)(int, siginfo_t *, void *); >+ union { >+ void (*__sa_handler)(int); >+ void (*__sa_sigaction)(int, struct __siginfo *, void *); >+ } __sigaction_u; /* signal handler */ > int sa_flags; /* see signal options below */ > sigset_t sa_mask; /* signal mask to apply */ > }; >+#define sa_handler __sigaction_u.__sa_handler >+#define sa_sigaction __sigaction_u.__sa_sigaction > .Ed > .Ft int > .Fo sigaction
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 211365
: 172970