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
f1b595f7
Commit
f1b595f7
authored
Aug 06, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for cancelling self and use normal thread variable
__thread is non-standard (and would need mingw 4.3).
parent
9fda9767
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
7 deletions
+50
-7
include/vlc_threads.h
include/vlc_threads.h
+1
-0
src/misc/threads.c
src/misc/threads.c
+49
-7
No files found.
include/vlc_threads.h
View file @
f1b595f7
...
...
@@ -186,6 +186,7 @@ enum {
VLC_SAVE_CANCEL
,
VLC_RESTORE_CANCEL
,
VLC_TEST_CANCEL
,
VLC_DO_CANCEL
,
};
#endif
...
...
src/misc/threads.c
View file @
f1b595f7
...
...
@@ -144,6 +144,8 @@ void vlc_pthread_fatal (const char *action, int error,
(
void
)
action
;
(
void
)
error
;
(
void
)
file
;
(
void
)
line
;
abort
();
}
static
vlc_threadvar_t
cancel_key
;
#endif
/*****************************************************************************
...
...
@@ -178,6 +180,9 @@ int vlc_threads_init( void )
vlc_threadvar_create
(
&
thread_object_key
,
NULL
);
#endif
vlc_threadvar_create
(
&
msg_context_global_key
,
msg_StackDestroy
);
#ifndef LIBVLC_USE_PTHREAD
vlc_threadvar_create
(
&
cancel_key
,
free
);
#endif
}
i_initializations
++
;
...
...
@@ -207,6 +212,9 @@ void vlc_threads_end( void )
if
(
i_initializations
==
1
)
{
vlc_object_release
(
p_root
);
#ifndef LIBVLC_USE_PTHREAD
vlc_threadvar_delete
(
&
cancel_key
);
#endif
vlc_threadvar_delete
(
&
msg_context_global_key
);
#ifndef NDEBUG
vlc_threadvar_delete
(
&
thread_object_key
);
...
...
@@ -838,42 +846,76 @@ void vlc_thread_cancel (vlc_object_t *obj)
vlc_cancel
(
priv
->
thread_id
);
}
typedef
struct
vlc_cleanup_t
{
struct
vlc_cleanup_t
*
next
;
void
(
*
proc
)
(
void
*
);
void
*
data
;
}
vlc_cleanup_t
;
typedef
struct
vlc_cancel_t
{
vlc_cleanup_t
*
cleaners
;
bool
killable
;
bool
killed
;
}
vlc_cancel_t
;
void
vlc_control_cancel
(
int
cmd
,
...)
{
#ifdef LIBVLC_USE_PTHREAD
(
void
)
cmd
;
abort
();
#else
static
__thread
struct
vlc_cancel_t
*
stack
=
NULL
;
static
__thread
bool
killed
=
false
,
killable
=
true
;
va_list
ap
;
va_start
(
ap
,
cmd
);
vlc_cancel_t
*
nfo
=
vlc_threadvar_get
(
&
cancel_key
);
if
(
nfo
==
NULL
)
{
nfo
=
malloc
(
sizeof
(
*
nfo
));
if
(
nfo
==
NULL
)
abort
();
nfo
->
cleaners
=
NULL
;
nfo
->
killed
=
false
;
nfo
->
killable
=
true
;
}
switch
(
cmd
)
{
case
VLC_SAVE_CANCEL
:
{
int
*
p_state
=
va_arg
(
ap
,
int
*
);
*
p_state
=
killable
;
killable
=
false
;
*
p_state
=
nfo
->
killable
;
nfo
->
killable
=
false
;
break
;
}
case
VLC_RESTORE_CANCEL
:
{
int
state
=
va_arg
(
ap
,
int
);
killable
=
state
!=
0
;
nfo
->
killable
=
state
!=
0
;
break
;
}
case
VLC_TEST_CANCEL
:
if
(
killable
)
#ifdef WIN32
if
(
nfo
->
killable
&&
nfo
->
killed
)
{
for
(
vlc_cleanup_t
*
p
=
nfo
->
cleaners
;
p
!=
NULL
;
p
=
p
->
next
)
p
->
proc
(
p
->
data
);
free
(
nfo
);
#if defined (LIBVLC_USE_PTHREAD)
pthread_exit
(
PTHREAD_CANCELLED
);
#elif defined (WIN32)
_endthread
();
#else
# error Not implemented!
#endif
}
break
;
case
VLC_DO_CANCEL
:
nfo
->
killed
=
true
;
break
;
}
va_end
(
ap
);
...
...
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