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
d611f5c6
Commit
d611f5c6
authored
Oct 12, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Android: do not screw up the signal mask on error
parent
031b7ba0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/android/thread.c
src/android/thread.c
+4
-4
No files found.
src/android/thread.c
View file @
d611f5c6
...
@@ -290,6 +290,10 @@ static void *joinable_thread(void *data)
...
@@ -290,6 +290,10 @@ static void *joinable_thread(void *data)
static
int
vlc_clone_attr
(
vlc_thread_t
*
th
,
void
*
(
*
entry
)
(
void
*
),
static
int
vlc_clone_attr
(
vlc_thread_t
*
th
,
void
*
(
*
entry
)
(
void
*
),
void
*
data
,
bool
detach
)
void
*
data
,
bool
detach
)
{
{
vlc_thread_t
thread
=
malloc
(
sizeof
(
*
thread
));
if
(
unlikely
(
thread
==
NULL
))
return
ENOMEM
;
int
ret
;
int
ret
;
sigset_t
oldset
;
sigset_t
oldset
;
...
@@ -305,10 +309,6 @@ static int vlc_clone_attr (vlc_thread_t *th, void *(*entry) (void *),
...
@@ -305,10 +309,6 @@ static int vlc_clone_attr (vlc_thread_t *th, void *(*entry) (void *),
pthread_sigmask
(
SIG_BLOCK
,
&
set
,
&
oldset
);
pthread_sigmask
(
SIG_BLOCK
,
&
set
,
&
oldset
);
}
}
vlc_thread_t
thread
=
malloc
(
sizeof
(
*
thread
));
if
(
unlikely
(
thread
==
NULL
))
return
ENOMEM
;
vlc_atomic_set
(
&
thread
->
killed
,
false
);
vlc_atomic_set
(
&
thread
->
killed
,
false
);
vlc_atomic_set
(
&
thread
->
finished
,
false
);
vlc_atomic_set
(
&
thread
->
finished
,
false
);
thread
->
killable
=
true
;
thread
->
killable
=
true
;
...
...
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