diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-10-21 20:12:56 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-10-21 20:12:56 +0000 |
commit | 3987b9d413c5f7f029a0a99d23b85a64935552e9 (patch) | |
tree | 24e42b3cb427b7132e9f0a71268a86909e93148f /gdb/findvar.c | |
parent | 9d774e4455679ce9e35acbcb9abb6704b49cc47f (diff) | |
download | gdb-3987b9d413c5f7f029a0a99d23b85a64935552e9.zip gdb-3987b9d413c5f7f029a0a99d23b85a64935552e9.tar.gz gdb-3987b9d413c5f7f029a0a99d23b85a64935552e9.tar.bz2 |
2002-10-21 Elena Zannoni <ezannoni@redhat.com>
* findvar.c (read_var_value): Temporarily disable TLS code, until
complete TLS support is added.
Diffstat (limited to 'gdb/findvar.c')
-rw-r--r-- | gdb/findvar.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/findvar.c b/gdb/findvar.c index 9eff168..dd3061b 100644 --- a/gdb/findvar.c +++ b/gdb/findvar.c @@ -544,6 +544,11 @@ addresses have not been bound by the dynamic loader. Try again when executable i case LOC_THREAD_LOCAL_STATIC: { +#if 0 + /* FIXME: ezannoni 2002-10-21: Temporarly disable the code + below, until the rest of the TLS support code is checked + in. */ + /* We want to let the target / ABI-specific code construct this value for us, so we need to dispose of the value allocated for us above. */ @@ -555,6 +560,7 @@ addresses have not been bound by the dynamic loader. Try again when executable i finding TLS is an ABI-specific thing. But we don't do that yet. */ else +#endif error ("Cannot find thread-local variables on this target"); break; } |