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
34607099
Commit
34607099
authored
Jul 30, 2002
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/vlc_threads.h: fixed the --fast-mutex option.
parent
d6052740
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
include/vlc_threads.h
include/vlc_threads.h
+4
-2
No files found.
include/vlc_threads.h
View file @
34607099
...
...
@@ -3,7 +3,7 @@
* This header provides a portable threads implementation.
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: vlc_threads.h,v 1.
6 2002/07/29 19:05:47
gbazin Exp $
* $Id: vlc_threads.h,v 1.
7 2002/07/30 07:56:40
gbazin Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
...
@@ -580,7 +580,7 @@ static inline int __vlc_cond_wait( char * psz_file, int i_line,
/* Increase our wait count */
p_condvar
->
i_waiting_threads
++
;
if
(
p_condvar
->
SignalObjectAndWait
)
if
(
p_condvar
->
SignalObjectAndWait
&&
p_mutex
->
mutex
)
/* It is only possible to atomically release the mutex and initiate the
* waiting on WinNT/2K/XP. Win9x doesn't have SignalObjectAndWait(). */
p_condvar
->
SignalObjectAndWait
(
p_mutex
->
mutex
,
...
...
@@ -591,6 +591,8 @@ static inline int __vlc_cond_wait( char * psz_file, int i_line,
LeaveCriticalSection
(
&
p_mutex
->
csection
);
WaitForSingleObject
(
p_condvar
->
event
,
INFINITE
);
}
p_condvar
->
i_waiting_threads
--
;
}
else
if
(
p_condvar
->
i_win9x_cv
==
1
)
{
...
...
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