diff options
author | Roland McGrath <roland@gnu.org> | 2004-03-25 03:54:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-03-25 03:54:03 +0000 |
commit | db2f05ba83cd9eaae24b30166816e5169bbae2c0 (patch) | |
tree | 0e742754c54aafc31d38af146808d06300a65286 /nptl_db/thread_dbP.h | |
parent | 61044c288ab5c7c4687205b0bf136e5358bfe1d1 (diff) | |
download | glibc-db2f05ba83cd9eaae24b30166816e5169bbae2c0.tar.gz glibc-db2f05ba83cd9eaae24b30166816e5169bbae2c0.tar.xz glibc-db2f05ba83cd9eaae24b30166816e5169bbae2c0.zip |
* Makerules ($(common-objpfx)shlib.lds): Don't use \n in rhs of sed
substitutions; the semicolon terminators are enough for ld anyway. * elf/dl-deps.c (_dl_map_object_deps): Use alloca instead of dynamically sized auto array in function already using alloca. * locale/programs/ld-ctype.c (ctype_output): Likewise. * locale/programs/ld-time.c (time_output): Likewise. * elf/dl-misc.c (_dl_debug_vdprintf): Use macro instead of const for IOV array size. * locale/programs/charmap.c (charmap_read): Avoid alloca (or strdupa) when also using dynamically-sized auto array. * locale/programs/locfile.c (locfile_read): Likewise. * locale/programs/repertoire.c (repertoire_read): Likewise. * nis/nis_print_group_entry.c (nis_print_group_entry): Likewise. * locale/programs/locarchive.c (enlarge_archive): Likewise. * posix/annexc.c (check_header): Likewise. * iconv/gconv_int.h (norm_add_slashes): Don't handle null SUFFIX. strlen ("") gets optimized away just as well. * intl/loadmsgcat.c (_nl_init_domain_conv): Update caller. * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Likewise.
Diffstat (limited to 'nptl_db/thread_dbP.h')
-rw-r--r-- | nptl_db/thread_dbP.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl_db/thread_dbP.h b/nptl_db/thread_dbP.h index 64266200f0..5504dd070f 100644 --- a/nptl_db/thread_dbP.h +++ b/nptl_db/thread_dbP.h @@ -1,5 +1,5 @@ /* Private header for thread debug library - Copyright (C) 2003 Free Software Foundation, Inc. + Copyright (C) 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -66,7 +66,7 @@ extern int __td_debug attribute_hidden; #define DB_DESC_SIZE(desc) ((desc)[0]) #define DB_DESC_NELEM(desc) ((desc)[1]) -#define DB_DESC_OFFSET(desc) ((int32_t) (desc)[2]) +#define DB_DESC_OFFSET(desc) ((desc)[2]) #define DB_SIZEOF_DESC (3 * sizeof (uint32_t)) #define DB_DEFINE_DESC(name, size, nelem, offset) \ const uint32_t name[3] = { (size), (nelem), (offset) } |