diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-02-05 19:29:35 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-02-05 19:29:35 +0100 |
commit | 3e808a4c28f214314e8457672fae0f5d17f5450a (patch) | |
tree | d216c4e0474be0b0be53e3c1599fe9dc29533c5f | |
parent | a1ee5b32fc698297149c770417354441ee62701e (diff) |
TLS_TCB_AT_TP: avoid warning about undef cpp token
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r-- | libpthread/nptl_db/structs.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/nptl_db/structs.def b/libpthread/nptl_db/structs.def index 823af5cba..1572ad696 100644 --- a/libpthread/nptl_db/structs.def +++ b/libpthread/nptl_db/structs.def @@ -77,7 +77,7 @@ DB_STRUCT_ARRAY_FIELD (dtv, dtv) # define pointer_val pointer.val /* Field of anonymous struct in dtv_t. */ DB_STRUCT_FIELD (dtv_t, pointer_val) #endif -#if !defined IS_IN_libpthread || TLS_TCB_AT_TP +#if !defined IS_IN_libpthread || (defined TLS_TCB_AT_TP && TLS_TCB_AT_TP) DB_STRUCT_FIELD (pthread, dtvp) #endif |