Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
03a49a29
Commit
03a49a29
authored
May 28, 2016
by
Andrey Gursky
Committed by
Jean-Baptiste Kempf
May 29, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build for Android
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
ecae6017
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/linux/thread.c
src/linux/thread.c
+1
-1
No files found.
src/linux/thread.c
View file @
03a49a29
...
...
@@ -50,7 +50,7 @@ unsigned long vlc_thread_id(void)
static
int
sys_futex
(
void
*
addr
,
int
op
,
int
val
,
const
struct
timespec
*
to
,
void
*
addr2
,
int
val3
)
{
return
syscall
(
SYS
_futex
,
addr
,
op
,
val
,
to
,
addr2
,
val3
);
return
syscall
(
__NR
_futex
,
addr
,
op
,
val
,
to
,
addr2
,
val3
);
}
static
int
vlc_futex_wake
(
void
*
addr
,
int
nr
)
...
...
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