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
7d6ea0b1
Commit
7d6ea0b1
authored
Mar 03, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Really fix race VLC_Die condition
parent
8274a40e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
src/vlc.c
src/vlc.c
+10
-8
No files found.
src/vlc.c
View file @
7d6ea0b1
...
...
@@ -242,16 +242,18 @@ static void *SigHandler (void *data)
}
static
void
KillOnce
(
void
)
{
VLC_Die
(
0
);
}
#include <stdbool.h>
static
void
Kill
(
void
)
{
static
pthread_once_t
once
=
PTHREAD_ONCE_INIT
;
pthread_once
(
&
once
,
KillOnce
);
static
pthread_mutex_t
lock
=
PTHREAD_MUTEX_INITIALIZER
;
static
bool
killed
=
false
;;
pthread_mutex_lock
(
&
lock
);
if
(
!
killed
)
{
VLC_Die
(
0
);
killed
=
true
;
}
pthread_mutex_unlock
(
&
lock
);
}
#endif
...
...
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