aboutsummaryrefslogtreecommitdiff
path: root/gdb/proc-flags.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/proc-flags.c')
-rw-r--r--gdb/proc-flags.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/proc-flags.c b/gdb/proc-flags.c
index 85989b7..14572b0 100644
--- a/gdb/proc-flags.c
+++ b/gdb/proc-flags.c
@@ -37,17 +37,17 @@
following form. These tables can be used to map numeric values to
their symbolic names and to a string that describes their specific use. */
-struct trans {
- int value; /* The numeric value */
- const char *name; /* The equivalent symbolic value */
- const char *desc; /* Short description of value */
+struct trans
+{
+ int value; /* The numeric value */
+ const char *name; /* The equivalent symbolic value */
+ const char *desc; /* Short description of value */
};
/* Translate bits in the pr_flags member of the prstatus structure,
into the names and desc information. */
-static struct trans pr_flag_table[] =
-{
+static struct trans pr_flag_table[] = {
/* lwp is stopped */
{ PR_STOPPED, "PR_STOPPED", "Process (LWP) is stopped" },
/* lwp is stopped on an event of interest */