aboutsummaryrefslogtreecommitdiff
path: root/gdb/ocd.c
diff options
context:
space:
mode:
authorJ.T. Conklin <jtc@acorntoolworks.com>2000-08-10 18:54:27 +0000
committerJ.T. Conklin <jtc@acorntoolworks.com>2000-08-10 18:54:27 +0000
commitf1d7622b957e12c8130c24fe4c46882f70b59b1c (patch)
tree00b4defbb759d34bc6ef4db5dc670b7fc5702473 /gdb/ocd.c
parente84d946b3ae38920c124cba665158104049c8665 (diff)
downloadfsf-binutils-gdb-f1d7622b957e12c8130c24fe4c46882f70b59b1c.zip
fsf-binutils-gdb-f1d7622b957e12c8130c24fe4c46882f70b59b1c.tar.gz
fsf-binutils-gdb-f1d7622b957e12c8130c24fe4c46882f70b59b1c.tar.bz2
* monitor.c (monitor_open): If a dcache has already been created,
invalidate it rather than creating another. * ocd.c (ocd_open): Likewise. * remote-nindy.c (nindy_open): Likewise. * remote-sds.c (sds_open): Likewise. * remote-utils.c (gr_open): Likewise. * remote.c (remote_open_1, remote_cisco_open): Likewise. * dcache.c (dcache_alloc): Changed to take address of line as an argument, and to invalidate cache line before returning. (dcache_peek_byte): Updated. (dcache_poke_byte): Updated. -------------------------------------------------------------------
Diffstat (limited to 'gdb/ocd.c')
-rw-r--r--gdb/ocd.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/ocd.c b/gdb/ocd.c
index 1a50978..5c29919 100644
--- a/gdb/ocd.c
+++ b/gdb/ocd.c
@@ -292,7 +292,10 @@ device the OCD device is attached to (e.g. /dev/ttya).");
unpush_target (current_ops);
- ocd_dcache = dcache_init (ocd_read_bytes, ocd_write_bytes);
+ if (!ocd_dcache)
+ ocd_dcache = dcache_init (ocd_read_bytes, ocd_write_bytes);
+ else
+ dcache_flush (ocd_dcache);
if (strncmp (name, "wiggler", 7) == 0)
{