diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/target.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5856ec1..07d3eed 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,6 +1,11 @@ 2009-04-30 Hui Zhu <teawater@gmail.com> Michael Snyder <msnyder@vmware.com> + * target.h (strata): New stratum "record_stratum". + +2009-04-30 Hui Zhu <teawater@gmail.com> + Michael Snyder <msnyder@vmware.com> + GDBARCH interface for process record and replay. * gdbarch.sh (process_record): This interface point to the diff --git a/gdb/target.h b/gdb/target.h index e7f087b..95fc0a9 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -63,7 +63,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 |