2002-10-21 Elena Zannoni <ezannoni@redhat.com>
* symtab.h (address_class): Rename LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC. * hpread.c (hpread_process_one_debug_symbol): Ditto. * printcmd.c (address_info): Ditto. * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
This commit is contained in:
parent
ef485c0196
commit
407caf07a4
5 changed files with 14 additions and 6 deletions
|
@ -1,3 +1,11 @@
|
|||
2002-10-21 Elena Zannoni <ezannoni@redhat.com>
|
||||
|
||||
* symtab.h (address_class): Rename
|
||||
LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
|
||||
* hpread.c (hpread_process_one_debug_symbol): Ditto.
|
||||
* printcmd.c (address_info): Ditto.
|
||||
* findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
|
||||
|
||||
2002-10-20 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
|
||||
|
|
|
@ -391,7 +391,7 @@ symbol_read_needs_frame (struct symbol *sym)
|
|||
case LOC_LOCAL_ARG:
|
||||
case LOC_BASEREG:
|
||||
case LOC_BASEREG_ARG:
|
||||
case LOC_THREAD_LOCAL_STATIC:
|
||||
case LOC_HP_THREAD_LOCAL_STATIC:
|
||||
return 1;
|
||||
|
||||
case LOC_UNDEF:
|
||||
|
@ -529,7 +529,7 @@ addresses have not been bound by the dynamic loader. Try again when executable i
|
|||
|
||||
case LOC_BASEREG:
|
||||
case LOC_BASEREG_ARG:
|
||||
case LOC_THREAD_LOCAL_STATIC:
|
||||
case LOC_HP_THREAD_LOCAL_STATIC:
|
||||
{
|
||||
struct value *regval;
|
||||
|
||||
|
|
|
@ -5742,7 +5742,7 @@ hpread_process_one_debug_symbol (union dnttentry *dn_bufp, char *name,
|
|||
{
|
||||
/* Thread-local variable.
|
||||
*/
|
||||
SYMBOL_CLASS (sym) = LOC_THREAD_LOCAL_STATIC;
|
||||
SYMBOL_CLASS (sym) = LOC_HP_THREAD_LOCAL_STATIC;
|
||||
SYMBOL_BASEREG (sym) = CR27_REGNUM;
|
||||
|
||||
if (objfile->flags & OBJF_SHARED)
|
||||
|
|
|
@ -1279,7 +1279,7 @@ address_info (char *exp, int from_tty)
|
|||
}
|
||||
break;
|
||||
|
||||
case LOC_THREAD_LOCAL_STATIC:
|
||||
case LOC_HP_THREAD_LOCAL_STATIC:
|
||||
printf_filtered (
|
||||
"a thread-local variable at offset %ld from the thread base register %s",
|
||||
val, REGISTER_NAME (basereg));
|
||||
|
|
|
@ -625,9 +625,9 @@ enum address_class
|
|||
LOC_UNRESOLVED,
|
||||
|
||||
/* Value is at a thread-specific location calculated by a
|
||||
target-specific method. */
|
||||
target-specific method. This is used only by hppa. */
|
||||
|
||||
LOC_THREAD_LOCAL_STATIC,
|
||||
LOC_HP_THREAD_LOCAL_STATIC,
|
||||
|
||||
/* The variable does not actually exist in the program.
|
||||
The value is ignored. */
|
||||
|
|
Loading…
Reference in a new issue