diff options
author | Stu Grossman <grossman@cygnus> | 1995-10-16 18:25:19 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1995-10-16 18:25:19 +0000 |
commit | 4930f0a7f4f3e9269b1c03d4bd1167198c55f269 (patch) | |
tree | ca2a2dfbf1ddf4e0570dc44036ef7ec342067a67 /gdb/dcache.c | |
parent | d75c2e0f5e198d8ab59449a8ff8a8f2067ea71f4 (diff) | |
download | gdb-4930f0a7f4f3e9269b1c03d4bd1167198c55f269.zip gdb-4930f0a7f4f3e9269b1c03d4bd1167198c55f269.tar.gz gdb-4930f0a7f4f3e9269b1c03d4bd1167198c55f269.tar.bz2 |
* dcache.c: Change default value of remotecache to off. It just
screws up too many targets.
* sparcl-stub.c: Add prototypes to many forward decls.
* Create private copies of strlen, strcpy, and memcpy to prevent
chaos when user steps into them.
* (trap_low handle_exception): Clean up DSU support code
(hardware breakpoints). Move lots of stuff from asm-land to
C-land (make it much easier to #ifdef if necessary). Also, use
trap 255 to get into break mode instead of doing a DSU register
write, which may trash the register.
* (putpacket): Don't check return value of putDebugChar. It
returns void...
Diffstat (limited to 'gdb/dcache.c')
-rw-r--r-- | gdb/dcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dcache.c b/gdb/dcache.c index 82da4a3..9eec202 100644 --- a/gdb/dcache.c +++ b/gdb/dcache.c @@ -148,7 +148,7 @@ struct dcache_struct int cache_has_stuff; } ; -int remote_dcache = 1; +int remote_dcache = 0; DCACHE *last_cache; /* Used by info dcache */ |