Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 336266 Details for
Bug 447810
FreeBSD: open() on a fifo can fail with -EINTR even when using SA_RESTART (app-shells/bash sometimes fails `read`)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
debug patch for bash set_signal_handler function
bash_debug.patch (text/plain), 593 bytes, created by
Zac Medico
on 2013-01-20 20:48:59 UTC
(
hide
)
Description:
debug patch for bash set_signal_handler function
Filename:
MIME Type:
Creator:
Zac Medico
Created:
2013-01-20 20:48:59 UTC
Size:
593 bytes
patch
obsolete
>diff -Nur ../bash-4.2.orig/sig.c ./sig.c >--- ../bash-4.2.orig/sig.c 2013-01-20 11:44:12.182866784 -0800 >+++ ./sig.c 2013-01-20 12:32:21.687781408 -0800 >@@ -674,6 +674,17 @@ > if (sig == SIGCHLD) > act.sa_flags |= SA_RESTART; /* XXX */ > >+ if (sig == SIGCHLD) >+ { >+ fprintf (stderr, "set_signal_handler SIGCHLD\n" >+ "\tsa_flags = %#x\n" >+ "\tSA_RESTART = %#x\n" >+ "\tsa_flags & SA_RESTART = %#x\n", >+ act.sa_flags, >+ SA_RESTART, >+ act.sa_flags & SA_RESTART); >+ } >+ > sigemptyset (&act.sa_mask); > sigemptyset (&oact.sa_mask); > sigaction (sig, &act, &oact);
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 447810
:
332708
|
332710
|
332910
|
333210
|
335664
| 336266 |
336270