From 7fc7e0c3280f9c7c4f8447869b219627ec39d054 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Tue, 24 Apr 2012 18:10:31 +0000 Subject: [PATCH] 2012-04-24 Sergio Durigan Junior * observer.sh: Conditionally declare `args', thus cleaning up unused instances of this variable. --- gdb/ChangeLog | 5 +++++ gdb/observer.sh | 11 ++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5b2b105..991792f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-04-24 Sergio Durigan Junior + + * observer.sh: Conditionally declare `args', thus cleaning up + unused instances of this variable. + 2012-04-24 Yao Qi Revert this patch to allow breakpoint always-inserted diff --git a/gdb/observer.sh b/gdb/observer.sh index b5c49ac..c98afd0 100755 --- a/gdb/observer.sh +++ b/gdb/observer.sh @@ -136,8 +136,17 @@ static void observer_${event}_notification_stub (const void *data, const void *args_data) { observer_${event}_ftype *notify = (observer_${event}_ftype *) data; +EOF + + notify_args=`echo ${actual} | sed -e 's/\([a-z0-9_][a-z0-9_]*\)/args->\1/g'` + + if test ! -z "${notify_args}"; then + cat<>${otmp} const struct ${event}_args *args = args_data; - notify (`echo ${actual} | sed -e 's/\([a-z0-9_][a-z0-9_]*\)/args->\1/g'`); +EOF + fi + cat <>${otmp} + notify (${notify_args}); } struct observer * -- 2.7.4