diff options
author | Andreas Schwab <schwab@suse.de> | 2014-05-13 16:40:41 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2014-05-27 14:48:46 +0200 |
commit | 774f928582fcfefb726f115772c001043aefa01c (patch) | |
tree | 25a1d36a397a74b00e2438caf52dfa5dfa0d3124 /sysdeps/arm/nptl | |
parent | 36ffe7398af5e5daa5745c64a15226d864378738 (diff) | |
download | glibc-774f928582fcfefb726f115772c001043aefa01c.tar.gz |
Remove second argument from TLS_INIT_TP macro
Diffstat (limited to 'sysdeps/arm/nptl')
-rw-r--r-- | sysdeps/arm/nptl/tls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/arm/nptl/tls.h b/sysdeps/arm/nptl/tls.h index 1a2d606ba7..fc828d2e7f 100644 --- a/sysdeps/arm/nptl/tls.h +++ b/sysdeps/arm/nptl/tls.h @@ -91,7 +91,7 @@ typedef struct /* Code to initially initialize the thread pointer. This might need special attention since 'errno' is not yet available and if the operation can cause a failure 'errno' must not be touched. */ -# define TLS_INIT_TP(tcbp, secondcall) \ +# define TLS_INIT_TP(tcbp) \ ({ INTERNAL_SYSCALL_DECL (err); \ long result_var; \ result_var = INTERNAL_SYSCALL_ARM (set_tls, err, 1, (tcbp)); \ |