diff options
Diffstat (limited to 'gdb/regcache.h')
-rw-r--r-- | gdb/regcache.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gdb/regcache.h b/gdb/regcache.h index c9d9a7d..36bfef8 100644 --- a/gdb/regcache.h +++ b/gdb/regcache.h @@ -47,24 +47,6 @@ extern struct gdbarch *get_regcache_arch (const struct regcache *regcache); extern struct address_space *get_regcache_aspace (const struct regcache *); -enum register_status - { - /* The register value is not in the cache, and we don't know yet - whether it's available in the target (or traceframe). */ - REG_UNKNOWN = 0, - - /* The register value is valid and cached. */ - REG_VALID = 1, - - /* The register value is unavailable. E.g., we're inspecting a - traceframe, and this register wasn't collected. Note that this - is different a different "unavailable" from saying the register - does not exist in the target's architecture --- in that case, - the target should have given us a target description that does - not include the register in the first place. */ - REG_UNAVAILABLE = -1 - }; - enum register_status regcache_register_status (const struct regcache *regcache, int regnum); @@ -78,12 +60,6 @@ void regcache_raw_write (struct regcache *regcache, int rawnum, extern enum register_status regcache_raw_read_signed (struct regcache *regcache, int regnum, LONGEST *val); -extern enum register_status - regcache_raw_read_unsigned (struct regcache *regcache, - int regnum, ULONGEST *val); - -ULONGEST regcache_raw_get_unsigned (struct regcache *regcache, - int regnum); extern void regcache_raw_write_signed (struct regcache *regcache, int regnum, LONGEST val); |