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
b9cffa3f
Commit
b9cffa3f
authored
Jan 19, 2005
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/vlc_threads_funcs.h: More %d -> %u
parent
03e30a85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
include/vlc_threads_funcs.h
include/vlc_threads_funcs.h
+5
-5
No files found.
include/vlc_threads_funcs.h
View file @
b9cffa3f
...
...
@@ -124,7 +124,7 @@ static inline int __vlc_mutex_lock( char * psz_file, int i_line,
if
(
i_result
)
{
msg_Err
(
p_mutex
->
p_this
,
"thread %
d
: mutex_lock failed at %s:%d (%d:%s)"
,
"thread %
u
: mutex_lock failed at %s:%d (%d:%s)"
,
i_thread
,
psz_file
,
i_line
,
i_result
,
psz_error
);
}
return
i_result
;
...
...
@@ -197,7 +197,7 @@ static inline int __vlc_mutex_unlock( char * psz_file, int i_line,
if
(
i_result
)
{
msg_Err
(
p_mutex
->
p_this
,
"thread %
d
: mutex_unlock failed at %s:%d (%d:%s)"
,
"thread %
u
: mutex_unlock failed at %s:%d (%d:%s)"
,
i_thread
,
psz_file
,
i_line
,
i_result
,
psz_error
);
}
...
...
@@ -339,7 +339,7 @@ static inline int __vlc_cond_signal( char * psz_file, int i_line,
if
(
i_result
)
{
msg_Err
(
p_condvar
->
p_this
,
"thread %
d
: cond_signal failed at %s:%d (%d:%s)"
,
"thread %
u
: cond_signal failed at %s:%d (%d:%s)"
,
i_thread
,
psz_file
,
i_line
,
i_result
,
psz_error
);
}
...
...
@@ -499,7 +499,7 @@ static inline int __vlc_cond_wait( char * psz_file, int i_line,
{
/* People keep pissing me off with this. --Meuuh */
msg_Dbg
(
p_condvar
->
p_this
,
"thread %
d
: secret message triggered "
"thread %
u
: secret message triggered "
"at %s:%d (%s)"
,
(
int
)
pthread_self
(),
psz_file
,
i_line
,
strerror
(
i_result
)
);
...
...
@@ -525,7 +525,7 @@ static inline int __vlc_cond_wait( char * psz_file, int i_line,
if
(
i_result
)
{
msg_Err
(
p_condvar
->
p_this
,
"thread %
d
: cond_wait failed at %s:%d (%d:%s)"
,
"thread %
u
: cond_wait failed at %s:%d (%d:%s)"
,
i_thread
,
psz_file
,
i_line
,
i_result
,
psz_error
);
}
...
...
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