From: Florian Weimer Date: Mon, 28 Jun 2021 12:33:53 +0000 (+0200) Subject: nptl: Rename nptl_version to __nptl_version X-Git-Tag: glibc-2.34~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b369cc4e9c2436b9b4f56128059313b69b0c300d;p=thirdparty%2Fglibc.git nptl: Rename nptl_version to __nptl_version This prepares it for exporting as a dynamic symbol. Reviewed-by: Carlos O'Donell Tested-by: Carlos O'Donell --- diff --git a/nptl_db/structs.def b/nptl_db/structs.def index fb7bb9367d7..248ecf43358 100644 --- a/nptl_db/structs.def +++ b/nptl_db/structs.def @@ -73,7 +73,7 @@ DB_STRUCT (td_eventbuf_t) DB_STRUCT_FIELD (td_eventbuf_t, eventnum) DB_STRUCT_FIELD (td_eventbuf_t, eventdata) -DB_SYMBOL (nptl_version) +DB_SYMBOL (__nptl_version) DB_SYMBOL (__nptl_create_event) DB_SYMBOL (__nptl_death_event) DB_SYMBOL (__nptl_threads_events) diff --git a/nptl_db/td_ta_new.c b/nptl_db/td_ta_new.c index 501d922ea26..eeca29d5a0f 100644 --- a/nptl_db/td_ta_new.c +++ b/nptl_db/td_ta_new.c @@ -39,7 +39,7 @@ td_ta_new (struct ps_prochandle *ps, td_thragent_t **ta) LOG ("td_ta_new"); /* Check whether the versions match. */ - if (td_lookup (ps, SYM_nptl_version, &versaddr) != PS_OK) + if (td_lookup (ps, SYM___nptl_version, &versaddr) != PS_OK) return TD_NOLIBTHREAD; if (ps_pdread (ps, versaddr, versbuf, sizeof (versbuf)) != PS_OK) return TD_ERR;