diff options
author | Michael Snyder <msnyder@vmware.com> | 2001-02-06 20:05:42 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2001-02-06 20:05:42 +0000 |
commit | e6cbd02ac2c4dd07c92d152b10c03c7bb24aec2b (patch) | |
tree | 876e170f720eb924e4121a1fcdb47d7d9e8ae2df /gdb/sol-thread.c | |
parent | 713f0374c042c67cfed6110a7ce2dd852ad49500 (diff) | |
download | gdb-e6cbd02ac2c4dd07c92d152b10c03c7bb24aec2b.zip gdb-e6cbd02ac2c4dd07c92d152b10c03c7bb24aec2b.tar.gz gdb-e6cbd02ac2c4dd07c92d152b10c03c7bb24aec2b.tar.bz2 |
2001-02-06 Michael Snyder <msnyder@makita.cygnus.com>
Submitted by Paul Hilfinger (hilfingr@gnat.com)
and Andrei Petrov (and@genesyslab.com).
* findvar.c: Buffers of size MAX_REGISTER_RAW_SIZE or REGISTER_BYTES
must be allocated dynamically, since these are no longer constants.
* infcmd.c: Ditto.
* regcache.c: Ditto.
* remote.c: Ditto.
* sol-thread.c: Ditto.
* valops.c: Ditto.
* config/sparc/sun4sol2.mh (MH_CFLAGS): Add -I/usr/include/v9, as a
work-around for a missing Sun header file in solaris for sparc64.
Diffstat (limited to 'gdb/sol-thread.c')
-rw-r--r-- | gdb/sol-thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c index d4325a0..f7727b4 100644 --- a/gdb/sol-thread.c +++ b/gdb/sol-thread.c @@ -685,7 +685,7 @@ sol_thread_store_registers (int regno) if (regno != -1) { /* Not writing all the regs */ /* save new register value */ - char old_value[REGISTER_SIZE]; + char* old_value = (char*) alloca (REGISTER_SIZE); memcpy (old_value, ®isters[REGISTER_BYTE (regno)], REGISTER_SIZE); val = p_td_thr_getgregs (&thandle, gregset); |