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/generic | |
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/generic')
-rw-r--r-- | sysdeps/generic/tls.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sysdeps/generic/tls.h b/sysdeps/generic/tls.h index fb3d965bb9..1c55f26b1b 100644 --- a/sysdeps/generic/tls.h +++ b/sysdeps/generic/tls.h @@ -59,12 +59,11 @@ use the value. - TLS_INIT_TP(tcb, firstcall) + TLS_INIT_TP(tcb) This macro must initialize the thread pointer to enable normal TLS - operation. The first parameter is a pointer to the thread control - block. The second parameter specifies whether this is the first - call for the TCB. ld.so calls this macro more than once. + operation. The parameter is a pointer to the thread control block. + ld.so calls this macro once. THREAD_DTV() |