summaryrefslogtreecommitdiff
path: root/gdb/ser-base.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2020-09-28 14:21:24 -0400
committerSimon Marchi <simon.marchi@polymtl.ca>2020-09-28 14:21:24 -0400
commitbd356ec6c0a2e83579514548ffc59317eee5cf91 (patch)
treecd1812a0cf91e648986803df69c50e837f8fdd6e /gdb/ser-base.c
parent394e9bf642df26a29f54852b8eb09fb2a9f6b7e1 (diff)
downloadbinutils-gdb-bd356ec6c0a2e83579514548ffc59317eee5cf91.tar.gz
gdb: fix formatting of serial::async_state's enumerators
The comments related to these enumerators are placed under the corresponding enumerator. This is quite unusual and confusing. Change it to have the comments above, as usual. gdb/ChangeLog: * ser-base.c: Adjust comments formatting. Change-Id: If2ea143a7d5217efa5ac088102ddb1933fbcb16a
Diffstat (limited to 'gdb/ser-base.c')
-rw-r--r--gdb/ser-base.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/gdb/ser-base.c b/gdb/ser-base.c
index fb6f4e056ad..84ca8c6167c 100644
--- a/gdb/ser-base.c
+++ b/gdb/ser-base.c
@@ -43,17 +43,18 @@ static handler_func fd_event;
/* Value of scb->async_state: */
enum {
- /* >= 0 (TIMER_SCHEDULED) */
- /* The ID of the currently scheduled timer event. This state is
- rarely encountered. Timer events are one-off so as soon as the
- event is delivered the state is changed to NOTHING_SCHEDULED. */
- FD_SCHEDULED = -1,
+ /* When >= 0, this contains the ID of the currently scheduled timer event.
+ This state is rarely encountered. Timer events are one-off so as soon as
+ the event is delivered the state is changed to NOTHING_SCHEDULED. */
+
/* The fd_event() handler is scheduled. It is called when ever the
file descriptor becomes ready. */
- NOTHING_SCHEDULED = -2
+ FD_SCHEDULED = -1,
+
/* Either no task is scheduled (just going into ASYNC mode) or a
timer event has just gone off and the current state has been
forced into nothing scheduled. */
+ NOTHING_SCHEDULED = -2
};
/* Identify and schedule the next ASYNC task based on scb->async_state