mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
(TLS_INIT_TP): Convert to statement expression returning 0.
This commit is contained in:
parent
49fca0fd26
commit
faa5b9b31c
@ -88,7 +88,7 @@ typedef struct
|
||||
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(descr) \
|
||||
do { \
|
||||
({ \
|
||||
void *_descr = (descr); \
|
||||
int result; \
|
||||
tcbhead_t *head = _descr; \
|
||||
@ -98,7 +98,9 @@ typedef struct
|
||||
head->self = _descr; \
|
||||
\
|
||||
asm ("ldc %0,gbr" : : "r" (_descr)); \
|
||||
} while (0)
|
||||
\
|
||||
0; \
|
||||
})
|
||||
|
||||
|
||||
/* Return the address of the dtv for the current thread. */
|
||||
|
Loading…
Reference in New Issue
Block a user