projects
/
platform
/
upstream
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc2eb93
)
arm: fix use of INTERNAL_SYSCALL_CALL
author
Andreas Schwab
<schwab@suse.de>
Sat, 15 Feb 2020 09:21:20 +0000
(10:21 +0100)
committer
Andreas Schwab
<schwab@suse.de>
Sat, 15 Feb 2020 09:30:44 +0000
(10:30 +0100)
Remove extra argument from INTERNAL_SYSCALL_CALL macro call. Fixes
commit
bc2eb9321e
("linux: Remove INTERNAL_SYSCALL_DECL").
sysdeps/unix/sysv/linux/arm/tls.h
patch
|
blob
|
history
diff --git
a/sysdeps/unix/sysv/linux/arm/tls.h
b/sysdeps/unix/sysv/linux/arm/tls.h
index
1b520c6
..
57b583d
100644
(file)
--- a/
sysdeps/unix/sysv/linux/arm/tls.h
+++ b/
sysdeps/unix/sysv/linux/arm/tls.h
@@
-32,7
+32,7
@@
operation can cause a failure 'errno' must not be touched. */
# define TLS_INIT_TP(tcbp) \
({ long int result_var; \
- result_var = INTERNAL_SYSCALL_CALL (set_tls,
1, (tcbp));
\
+ result_var = INTERNAL_SYSCALL_CALL (set_tls,
(tcbp));
\
INTERNAL_SYSCALL_ERROR_P (result_var) \
? "unknown error" : NULL; })