aboutsummaryrefslogtreecommitdiff
path: root/gdb/dcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/dcache.h')
-rw-r--r--gdb/dcache.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/dcache.h b/gdb/dcache.h
index 928173d..1615fce 100644
--- a/gdb/dcache.h
+++ b/gdb/dcache.h
@@ -27,12 +27,15 @@ typedef int (*memxferfunc) (CORE_ADDR memaddr, char *myaddr, int len);
typedef struct dcache_struct DCACHE;
-/* Flush DCACHE. */
-void dcache_flush (DCACHE * dcache);
+/* Invalidate DCACHE. */
+void dcache_invd (DCACHE * dcache);
/* Initialize DCACHE. */
DCACHE *dcache_init (memxferfunc reading, memxferfunc writing);
+/* Free a DCACHE */
+void dcache_free (DCACHE *);
+
/* Simple to call from <remote>_xfer_memory */
int dcache_xfer_memory (DCACHE * cache, CORE_ADDR mem, char *my, int len,