Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
bca6b23c
Commit
bca6b23c
authored
Jan 13, 2005
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/misc/threads.c: thread_id is in fact an _unsigned_ int.
parent
6bd81eee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
src/misc/threads.c
src/misc/threads.c
+8
-8
No files found.
src/misc/threads.c
View file @
bca6b23c
...
...
@@ -610,8 +610,8 @@ int __vlc_thread_create( vlc_object_t *p_this, char * psz_file, int i_line,
p_this
->
b_thread
=
1
;
msg_Dbg
(
p_this
,
"thread %
d
(%s) created at priority %d (%s:%d)"
,
(
int
)
p_this
->
thread_id
,
psz_name
,
i_priority
,
msg_Dbg
(
p_this
,
"thread %
u
(%s) created at priority %d (%s:%d)"
,
(
unsigned
int
)
p_this
->
thread_id
,
psz_name
,
i_priority
,
psz_file
,
i_line
);
vlc_mutex_unlock
(
&
p_this
->
object_lock
);
...
...
@@ -724,18 +724,18 @@ void __vlc_thread_join( vlc_object_t *p_this, char * psz_file, int i_line )
if
(
i_ret
)
{
#ifdef HAVE_STRERROR
msg_Err
(
p_this
,
"thread_join(%
d
) failed at %s:%d (%s)"
,
(
int
)
p_this
->
thread_id
,
psz_file
,
i_line
,
msg_Err
(
p_this
,
"thread_join(%
u
) failed at %s:%d (%s)"
,
(
unsigned
int
)
p_this
->
thread_id
,
psz_file
,
i_line
,
strerror
(
i_ret
)
);
#else
msg_Err
(
p_this
,
"thread_join(%
d
) failed at %s:%d"
,
(
int
)
p_this
->
thread_id
,
psz_file
,
i_line
);
msg_Err
(
p_this
,
"thread_join(%
u
) failed at %s:%d"
,
(
unsigned
int
)
p_this
->
thread_id
,
psz_file
,
i_line
);
#endif
}
else
{
msg_Dbg
(
p_this
,
"thread %
d
joined (%s:%d)"
,
(
int
)
p_this
->
thread_id
,
psz_file
,
i_line
);
msg_Dbg
(
p_this
,
"thread %
u
joined (%s:%d)"
,
(
unsigned
int
)
p_this
->
thread_id
,
psz_file
,
i_line
);
}
p_this
->
b_thread
=
0
;
...
...
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