Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
730ab672
Commit
730ab672
authored
May 26, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove pthread_t casting, fix building on FreeBSD
parent
0383d40e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/vlc_threads_funcs.h
include/vlc_threads_funcs.h
+2
-2
No files found.
include/vlc_threads_funcs.h
View file @
730ab672
...
@@ -486,8 +486,8 @@ static inline int __vlc_cond_wait( const char * psz_file, int i_line,
...
@@ -486,8 +486,8 @@ static inline int __vlc_cond_wait( const char * psz_file, int i_line,
{
{
/* People keep pissing me off with this. --Meuuh */
/* People keep pissing me off with this. --Meuuh */
msg_Dbg
(
p_condvar
->
p_this
,
msg_Dbg
(
p_condvar
->
p_this
,
"thread
%u
: secret message triggered "
"thread: secret message triggered "
"at %s:%d (%s)"
,
(
int
)
pthread_self
(),
"at %s:%d (%s)"
,
psz_file
,
i_line
,
strerror
(
i_result
)
);
psz_file
,
i_line
,
strerror
(
i_result
)
);
i_result
=
pthread_cond_wait
(
&
p_condvar
->
cond
,
&
p_mutex
->
mutex
);
i_result
=
pthread_cond_wait
(
&
p_condvar
->
cond
,
&
p_mutex
->
mutex
);
...
...
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