Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
801bc148
Commit
801bc148
authored
Jul 16, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Demote SIGCHLD error to a warning
parent
bc3e5294
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/control/signals.c
modules/control/signals.c
+6
-6
No files found.
modules/control/signals.c
View file @
801bc148
...
@@ -130,16 +130,16 @@ static void *SigThread (void *data)
...
@@ -130,16 +130,16 @@ static void *SigThread (void *data)
sigaction
(
signum
,
NULL
,
&
act
);
sigaction
(
signum
,
NULL
,
&
act
);
if
((
act
.
sa_flags
&
SA_SIGINFO
)
||
(
act
.
sa_handler
!=
SIG_DFL
))
if
((
act
.
sa_flags
&
SA_SIGINFO
)
||
(
act
.
sa_handler
!=
SIG_DFL
))
{
{
msg_
Err
(
obj
,
"signal %d overridden (%p)"
,
signum
,
msg_
Warn
(
obj
,
"signal %d overridden (%p)"
,
signum
,
act
.
sa_handler
);
act
.
sa_handler
);
#ifdef __GLIBC__
#ifdef __GLIBC__
Dl_info
info
;
Dl_info
info
;
if
(
dladdr
(
act
.
sa_handler
,
&
info
))
if
(
dladdr
(
act
.
sa_handler
,
&
info
))
msg_
Err
(
obj
,
" %s(%s)[%p]"
,
msg_
Warn
(
obj
,
" %s(%s)[%p]"
,
info
.
dli_fname
?
info
.
dli_fname
:
"?"
,
info
.
dli_fname
?
info
.
dli_fname
:
"?"
,
info
.
dli_sname
?
info
.
dli_sname
:
"?"
,
info
.
dli_sname
?
info
.
dli_sname
:
"?"
,
info
.
dli_saddr
);
info
.
dli_saddr
);
#endif
#endif
if
(
!
(
act
.
sa_flags
&
SA_SIGINFO
)
&&
(
act
.
sa_handler
!=
SIG_IGN
))
if
(
!
(
act
.
sa_flags
&
SA_SIGINFO
)
&&
(
act
.
sa_handler
!=
SIG_IGN
))
act
.
sa_handler
(
signum
);
act
.
sa_handler
(
signum
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment