diff options
author | Roland McGrath <roland@gnu.org> | 2004-01-06 10:30:50 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-01-06 10:30:50 +0000 |
commit | 387533915f738e20698cce92d90c0677c991c3fc (patch) | |
tree | 68d02a727d412255b4c7ae2c611ffd08bbdd89a8 | |
parent | e1238dc989a6f991522cd843869ea6ebbbd720ff (diff) | |
download | glibc-387533915f738e20698cce92d90c0677c991c3fc.tar glibc-387533915f738e20698cce92d90c0677c991c3fc.tar.gz glibc-387533915f738e20698cce92d90c0677c991c3fc.tar.bz2 glibc-387533915f738e20698cce92d90c0677c991c3fc.zip |
2003-12-11 Ulrich Weigand <uweigand@de.ibm.com>
* db_info.c (REGISTER): Add bit size of thread register as second
parameter to REGISTER macro.
-rw-r--r-- | nptl_db/db_info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl_db/db_info.c b/nptl_db/db_info.c index 40cf5bf08e..4d47b6609d 100644 --- a/nptl_db/db_info.c +++ b/nptl_db/db_info.c @@ -93,8 +93,8 @@ DESC (_thread_db_pthread_dtvp, # define REGISTER_THREAD_AREA(bits, regofs, scale) \ DB_DEFINE_DESC (_thread_db_register##bits##_thread_area, \ bits, (scale), (regofs)); -# define REGISTER(bits, regofs, bias) \ - DB_DEFINE_DESC (_thread_db_register##bits, bits, (uint32_t)(bias), (regofs)); +# define REGISTER(bits, size, regofs, bias) \ + DB_DEFINE_DESC (_thread_db_register##bits, size, (uint32_t)(bias), (regofs)); DB_THREAD_SELF #endif |