[PATCH v8] Events when inferior is modified

Yao Qi yao@codesourcery.com
Mon Dec 15 08:33:00 GMT 2014


Doug Evans <dje@google.com> writes:

> diff --git a/gdb/NEWS b/gdb/NEWS
> index d38266f..7262502 100644
> --- a/gdb/NEWS
> +++ b/gdb/NEWS
> @@ -1,6 +1,16 @@
>  		What has changed in GDB?
>  	     (Organized release by release)
>  
> +* Python Scripting
> +
> +  New events which are triggered when GDB modifies the state of the 
> +  inferior.
> +
> +  ** gdb.events.inferior_call_pre: Function call is about to be made.
> +  ** gdb.events.inferior_call_post: Function call has just been made.
> +  ** gdb.events.memory_changed: A memory location has been altered.
> +  ** gdb.events.register_changed: A register has been altered.
> +
>  *** Changes since GDB 7.8

These entries should go to "Changes since GDB 7.8" section.  This patch
moves them there.

-- 
Yao (齐尧)

From: Yao Qi <yao@codesourcery.com>
Date: Mon, 15 Dec 2014 16:29:21 +0800
Subject: [PATCH] Move NEWS entries to the right section

gdb:

2014-12-15  Yao Qi  <yao@codesourcery.com>

	* NEWS: Move some entries to "Changes since GDB 7.8" section.

diff --git a/gdb/NEWS b/gdb/NEWS
index 168e810..75a05c3 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -1,16 +1,6 @@
 		What has changed in GDB?
 	     (Organized release by release)
 
-* Python Scripting
-
-  New events which are triggered when GDB modifies the state of the 
-  inferior.
-
-  ** gdb.events.inferior_call_pre: Function call is about to be made.
-  ** gdb.events.inferior_call_post: Function call has just been made.
-  ** gdb.events.memory_changed: A memory location has been altered.
-  ** gdb.events.register_changed: A register has been altered.
-
 *** Changes since GDB 7.8
 
 * GDB now supports hardware watchpoints on x86 GNU Hurd.
@@ -30,6 +20,14 @@
   ** You can now add attributes to gdb.Objfile and gdb.Progspace objects.
   ** New function gdb.lookup_objfile.
 
+  New events which are triggered when GDB modifies the state of the 
+  inferior.
+
+  ** gdb.events.inferior_call_pre: Function call is about to be made.
+  ** gdb.events.inferior_call_post: Function call has just been made.
+  ** gdb.events.memory_changed: A memory location has been altered.
+  ** gdb.events.register_changed: A register has been altered.
+
 * New Python-based convenience functions:
 
   ** $_caller_is(name [, number_of_frames])



More information about the Gdb-patches mailing list