diff options
author | Yao Qi <yao@codesourcery.com> | 2014-06-18 22:00:54 +0800 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2014-06-19 20:14:43 +0800 |
commit | f6e29b6ec0a4fd410ddaaddacf045c4cb4e890f2 (patch) | |
tree | 791720c012bb7598e66c727362fe650cee348c6f /gdb/ChangeLog | |
parent | 034f788c5ec1e5b20fae3b6efc7fe961631e014d (diff) | |
download | gdb-f6e29b6ec0a4fd410ddaaddacf045c4cb4e890f2.zip gdb-f6e29b6ec0a4fd410ddaaddacf045c4cb4e890f2.tar.gz gdb-f6e29b6ec0a4fd410ddaaddacf045c4cb4e890f2.tar.bz2 |
Use enum thread_state
This patch is to change field state's type to 'enum thread_state', and
replace RUNNING with THREAD_RUNNING and STOPPED with THREAD_STOPPED
respectively in comments.
gdb:
2014-06-19 Yao Qi <yao@codesourcery.com>
* gdbthread.h (struct thread_info) <state>: Change its type to
'enum thread_state'. Update comments.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 850b267..36a74be 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-06-19 Yao Qi <yao@codesourcery.com> + + * gdbthread.h (struct thread_info) <state>: Change its type to + 'enum thread_state'. Update comments. + 2014-06-19 Pedro Alves <palves@redhat.com> * gdbthread.h (ALL_THREADS): Delete. |