aboutsummaryrefslogtreecommitdiff
path: root/gdb/dcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/dcache.h')
-rw-r--r--gdb/dcache.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/gdb/dcache.h b/gdb/dcache.h
index 1bc42ac..2b52840 100644
--- a/gdb/dcache.h
+++ b/gdb/dcache.h
@@ -21,7 +21,7 @@
#ifndef DCACHE_H
#define DCACHE_H
-#include "target.h" /* for enum target_xfer_status */
+#include "target.h" /* for enum target_xfer_status */
typedef struct dcache_struct DCACHE;
@@ -37,19 +37,15 @@ void dcache_free (DCACHE *);
/* A deletion adapter that calls dcache_free. */
struct dcache_deleter
{
- void operator() (DCACHE *d) const
- {
- dcache_free (d);
- }
+ void operator() (DCACHE *d) const { dcache_free (d); }
};
enum target_xfer_status
- dcache_read_memory_partial (struct target_ops *ops, DCACHE *dcache,
- CORE_ADDR memaddr, gdb_byte *myaddr,
- ULONGEST len, ULONGEST *xfered_len);
+dcache_read_memory_partial (struct target_ops *ops, DCACHE *dcache,
+ CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len,
+ ULONGEST *xfered_len);
void dcache_update (DCACHE *dcache, enum target_xfer_status status,
- CORE_ADDR memaddr, const gdb_byte *myaddr,
- ULONGEST len);
+ CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len);
#endif /* DCACHE_H */