X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Ftarget%2Fregister.h;h=0f8f2f4e0b1c8f09102c7fbf9ea30d95ed2774d6;hp=c14dfd43fa42e57010b8c43368e34480b9a374f2;hb=71cde5e359f273585880ea8986709b950ba85b08;hpb=31fb7788a605fe1c0c405444b5bab51a7e42d481 diff --git a/src/target/register.h b/src/target/register.h index c14dfd43fa..0f8f2f4e0b 100644 --- a/src/target/register.h +++ b/src/target/register.h @@ -41,7 +41,7 @@ struct reg_cache char *name; struct reg_cache *next; struct reg *reg_list; - int num_regs; + unsigned num_regs; }; struct reg_arch_type @@ -53,6 +53,7 @@ struct reg_arch_type struct reg* register_get_by_name(struct reg_cache *first, const char *name, bool search_all); struct reg_cache** register_get_last_cache_p(struct reg_cache **first); +void register_cache_invalidate(struct reg_cache *cache); void register_init_dummy(struct reg *reg);