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/tile | |
parent | 36ffe7398af5e5daa5745c64a15226d864378738 (diff) | |
download | glibc-774f928582fcfefb726f115772c001043aefa01c.tar.gz glibc-774f928582fcfefb726f115772c001043aefa01c.tar.xz glibc-774f928582fcfefb726f115772c001043aefa01c.zip |
Remove second argument from TLS_INIT_TP macro
Diffstat (limited to 'sysdeps/tile')
-rw-r--r-- | sysdeps/tile/nptl/tls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/tile/nptl/tls.h b/sysdeps/tile/nptl/tls.h index 2a9bbc1b04..c93e8a88c3 100644 --- a/sysdeps/tile/nptl/tls.h +++ b/sysdeps/tile/nptl/tls.h @@ -106,7 +106,7 @@ register void *__thread_pointer asm ("tp"); # define GET_DTV(tcbp) (((tcbhead_t *) (tcbp))[-1].dtv) /* Code to initially initialize the thread pointer (tp). */ -# define TLS_INIT_TP(tcbp, secondcall) \ +# define TLS_INIT_TP(tcbp) \ (__thread_pointer = (char *)(tcbp) + TLS_TCB_OFFSET, NULL) /* Return the address of the dtv for the current thread. */ |