From da3af819cb319d6bb40a0e8e0c1243a7efa65151 Mon Sep 17 00:00:00 2001 From: uweigand Date: Wed, 26 Oct 2011 17:32:00 +0000 Subject: [PATCH] * regcache.c (registers_changed_ptid): Invalidate thread architecture and frame caches if PTID refers to all threads of a process. --- gdb/ChangeLog | 5 +++++ gdb/regcache.c | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e754591867..5d6087205f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2011-10-26 Ulrich Weigand + * regcache.c (registers_changed_ptid): Invalidate thread architecture + and frame caches if PTID refers to all threads of a process. + +2011-10-26 Ulrich Weigand + * spu-tdep.c (spu_catch_start): Pass non-NULL breakpoint ops to create_breakpoint. diff --git a/gdb/regcache.c b/gdb/regcache.c index ea8189e67d..f81ac309bb 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -548,7 +548,6 @@ void registers_changed_ptid (ptid_t ptid) { struct regcache_list *list, **list_link; - int wildcard = ptid_equal (ptid, minus_one_ptid); list = current_regcache; list_link = ¤t_regcache; @@ -569,13 +568,13 @@ registers_changed_ptid (ptid_t ptid) list = *list_link; } - if (wildcard || ptid_equal (ptid, current_thread_ptid)) + if (ptid_match (current_thread_ptid, ptid)) { current_thread_ptid = null_ptid; current_thread_arch = NULL; } - if (wildcard || ptid_equal (ptid, inferior_ptid)) + if (ptid_match (inferior_ptid, ptid)) { /* We just deleted the regcache of the current thread. Need to forget about any frames we have cached, too. */ -- 2.11.0