Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
8e34f1cd
Commit
8e34f1cd
authored
Jul 24, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not ResumeThread an invalid thread handle
parent
3b07cce3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
19 deletions
+15
-19
src/misc/threads.c
src/misc/threads.c
+15
-19
No files found.
src/misc/threads.c
View file @
8e34f1cd
...
...
@@ -549,34 +549,30 @@ int __vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line
pthread_attr_destroy
(
&
attr
);
#elif defined( WIN32 ) || defined( UNDER_CE )
{
/* When using the MSVCRT C library you have to use the _beginthreadex
* function instead of CreateThread, otherwise you'll end up with
* memory leaks and the signal functions not working (see Microsoft
* Knowledge Base, article 104641) */
#if defined( UNDER_CE )
HANDLE
hThread
=
CreateThread
(
NULL
,
0
,
thread_entry
,
(
LPVOID
)
boot
,
CREATE_SUSPENDED
,
NULL
);
(
LPVOID
)
boot
,
CREATE_SUSPENDED
,
NULL
);
#else
HANDLE
hThread
=
(
HANDLE
)(
uintptr_t
)
_beginthreadex
(
NULL
,
0
,
thread_entry
,
boot
,
CREATE_SUSPENDED
,
NULL
);
_beginthreadex
(
NULL
,
0
,
thread_entry
,
boot
,
CREATE_SUSPENDED
,
NULL
);
#endif
p_priv
->
thread_id
=
hThread
;
ResumeThread
(
hThread
);
}
i_ret
=
(
p_priv
->
thread_id
?
0
:
errno
);
if
(
!
i_ret
&&
i_priority
)
if
(
hThread
)
{
if
(
!
SetThreadPriority
(
p_priv
->
thread_id
,
i_priority
)
)
p_priv
->
thread_id
=
hThread
;
ResumeThread
(
hThread
);
i_ret
=
0
;
if
(
i_priority
&&
!
SetThreadPriority
(
hThread
,
i_priority
)
)
{
msg_Warn
(
p_this
,
"couldn't set a faster priority"
);
i_priority
=
0
;
}
}
else
i_ret
=
errno
;
#elif defined( HAVE_KERNEL_SCHEDULER_H )
p_priv
->
thread_id
=
spawn_thread
(
(
thread_func
)
thread_entry
,
psz_name
,
...
...
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