Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 157141 Details for
Bug 243908
nanny blocks SIGALRM causing tftp client timeout not to be handled.
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Fix: unblock all signals + return to default handler after fork
piranha-243908.patch (text/plain), 738 bytes, created by
Lon Hohberger
on 2007-06-15 18:38:57 UTC
(
hide
)
Description:
Fix: unblock all signals + return to default handler after fork
Filename:
MIME Type:
Creator:
Lon Hohberger
Created:
2007-06-15 18:38:57 UTC
Size:
738 bytes
patch
obsolete
>? .swp >? RPM >? fos >? lvsd >? nanny >? piranha-0.8.3.1.tar.gz >? piranha.spec >? pulse >? send_arp >? web/logrotate >Index: nanny.c >=================================================================== >RCS file: /cvs/devel/piranha/nanny.c,v >retrieving revision 1.30.2.2 >diff -u -r1.30.2.2 nanny.c >--- nanny.c 10 May 2007 21:07:14 -0000 1.30.2.2 >+++ nanny.c 15 Jun 2007 18:38:20 -0000 >@@ -624,6 +624,7 @@ > int status; > int rc; > int log_it; >+ sigset_t sigs; > > log_it = log_flag; > if (flags & NANNY_FLAG_VERBOSE) >@@ -636,6 +637,11 @@ > return 0; > > if (!(child = fork ())) { >+ sigfillset(&sigs); >+ sigprocmask(SIG_UNBLOCK, &sigs, NULL); >+ for (rc = 1; rc < _NSIG; rc++) >+ signal(rc, SIG_DFL); >+ > execv (argv[0], argv); > exit (1); > }
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 243908
:
157141
|
157142