aboutsummaryrefslogtreecommitdiff
path: root/gdb/bcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/bcache.h')
-rw-r--r--gdb/bcache.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/gdb/bcache.h b/gdb/bcache.h
index a49d729..b56cf3b 100644
--- a/gdb/bcache.h
+++ b/gdb/bcache.h
@@ -145,13 +145,15 @@ struct bcache;
either case, return a pointer to BCACHE's copy of that string.
Since the cached value is ment to be read-only, return a const
buffer. */
-extern void *deprecated_bcache (const void *addr, int length,
- struct bcache *bcache);
extern const void *bcache (const void *addr, int length,
struct bcache *bcache);
-extern void *deprecated_bcache_added (const void *addr, int length,
- struct bcache *bcache, int *added);
+/* Like bcache, but if ADDED is not NULL, set *ADDED to true if the
+ bytes were newly added to the cache, or to false if the bytes were
+ found in the cache. */
+extern const void *bcache_full (const void *addr, int length,
+ struct bcache *bcache, int *added);
+
/* Free all the storage used by BCACHE. */
extern void bcache_xfree (struct bcache *bcache);