This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFA] Resubmit process record and replay, 2/10


teawater wrote:
This patch is add a new stratum "record_stratum" to strata in target
layer.  Process record and replay target will be set to this stratum.
Then it will be the top of target strack when it is opened.

2008-11-16 Hui Zhu <teawater@gmail.com>

* target.h (strata): New stratum "record_stratum".

 target.h |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

I think that, if we agree that adding a stratum is the way to go here, then this part of the patch is good to go.

Dissenting?


------------------------------------------------------------------------

--- a/target.h
+++ b/target.h
@@ -62,7 +62,8 @@ enum strata
file_stratum, /* Executable files, etc */
core_stratum, /* Core dump files */
process_stratum, /* Executing processes */
- thread_stratum /* Executing threads */
+ thread_stratum, /* Executing threads */
+ record_stratum /* Support record debugging */
};
enum thread_control_capabilities


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]