aboutsummaryrefslogtreecommitdiff
path: root/gdb/proc-flags.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:36:23 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:46:02 -0500
commitc583a2520616c2736cffc389c89a48b159366e6c (patch)
treeb4925f26506fcee96c16119431c01760f05db95d /gdb/proc-flags.c
parentca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff)
downloadfsf-binutils-gdb-users/simark/clang-format.zip
fsf-binutils-gdb-users/simark/clang-format.tar.gz
fsf-binutils-gdb-users/simark/clang-format.tar.bz2
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
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 */