diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 15:01:28 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 15:01:28 -0400 |
commit | 01add95bed9afd5e7815439c3967db976be53f80 (patch) | |
tree | a0239dcf29375bf6e4382d419d17117b1665d8ab /gdb/go32-nat.c | |
parent | 055c879fcf242e43a6ef8190f83905109922da93 (diff) | |
download | gdb-01add95bed9afd5e7815439c3967db976be53f80.zip gdb-01add95bed9afd5e7815439c3967db976be53f80.tar.gz gdb-01add95bed9afd5e7815439c3967db976be53f80.tar.bz2 |
gdb: fix some indentation issues
I wrote a small script to spot a pattern of indentation mistakes I saw
happened in breakpoint.c. And while at it I ran it on all files and
fixed what I found. No behavior changes intended, just indentation and
addition / removal of curly braces.
gdb/ChangeLog:
* Fix some indentation mistakes throughout.
gdbserver/ChangeLog:
* Fix some indentation mistakes throughout.
Change-Id: Ia01990c26c38e83a243d8f33da1d494f16315c6e
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r-- | gdb/go32-nat.c | 126 |
1 files changed, 63 insertions, 63 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index 5aae340..093ed9e 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -401,18 +401,18 @@ go32_nat_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal) resume_is_step = step; if (siggnal != GDB_SIGNAL_0 && siggnal != GDB_SIGNAL_TRAP) - { - for (i = 0, resume_signal = -1; - excepn_map[i].gdb_sig != GDB_SIGNAL_LAST; i++) - if (excepn_map[i].gdb_sig == siggnal) - { - resume_signal = excepn_map[i].djgpp_excepno; - break; - } - if (resume_signal == -1) - printf_unfiltered ("Cannot deliver signal %s on this platform.\n", - gdb_signal_to_name (siggnal)); - } + { + for (i = 0, resume_signal = -1; + excepn_map[i].gdb_sig != GDB_SIGNAL_LAST; i++) + if (excepn_map[i].gdb_sig == siggnal) + { + resume_signal = excepn_map[i].djgpp_excepno; + break; + } + if (resume_signal == -1) + printf_unfiltered ("Cannot deliver signal %s on this platform.\n", + gdb_signal_to_name (siggnal)); + } } static char child_cwd[FILENAME_MAX]; @@ -872,14 +872,14 @@ device_mode (int fd, int raw_p) newmode &= ~0x20; if (oldmode & 0x80) /* Only for character dev. */ - { - regs.x.ax = 0x4401; - regs.x.bx = fd; - regs.x.dx = newmode & 0xff; /* Force upper byte zero, else it fails. */ - __dpmi_int (0x21, ®s); - if (regs.x.flags & 1) - return -1; - } + { + regs.x.ax = 0x4401; + regs.x.bx = fd; + regs.x.dx = newmode & 0xff; /* Force upper byte zero, else it fails. */ + __dpmi_int (0x21, ®s); + if (regs.x.flags & 1) + return -1; + } return (oldmode & 0x20) == 0x20; } @@ -909,24 +909,24 @@ go32_nat_target::terminal_info (const char *args, int from_tty) #if __DJGPP_MINOR__ > 2 if (child_cmd.redirection) - { - int i; - - for (i = 0; i < DBG_HANDLES; i++) { - if (child_cmd.redirection[i]->file_name) - printf_unfiltered ("\tFile handle %d is redirected to `%s'.\n", - i, child_cmd.redirection[i]->file_name); - else if (_get_dev_info (child_cmd.redirection[i]->inf_handle) == -1) - printf_unfiltered - ("\tFile handle %d appears to be closed by inferior.\n", i); - /* Mask off the raw/cooked bit when comparing device info words. */ - else if ((_get_dev_info (child_cmd.redirection[i]->inf_handle) & 0xdf) - != (_get_dev_info (i) & 0xdf)) - printf_unfiltered - ("\tFile handle %d appears to be redirected by inferior.\n", i); + int i; + + for (i = 0; i < DBG_HANDLES; i++) + { + if (child_cmd.redirection[i]->file_name) + printf_unfiltered ("\tFile handle %d is redirected to `%s'.\n", + i, child_cmd.redirection[i]->file_name); + else if (_get_dev_info (child_cmd.redirection[i]->inf_handle) == -1) + printf_unfiltered + ("\tFile handle %d appears to be closed by inferior.\n", i); + /* Mask off the raw/cooked bit when comparing device info words. */ + else if ((_get_dev_info (child_cmd.redirection[i]->inf_handle) & 0xdf) + != (_get_dev_info (i) & 0xdf)) + printf_unfiltered + ("\tFile handle %d appears to be redirected by inferior.\n", i); + } } - } #endif } @@ -936,19 +936,19 @@ go32_nat_target::terminal_inferior () /* Redirect standard handles as child wants them. */ errno = 0; if (redir_to_child (&child_cmd) == -1) - { - redir_to_debugger (&child_cmd); - error (_("Cannot redirect standard handles for program: %s."), - safe_strerror (errno)); - } + { + redir_to_debugger (&child_cmd); + error (_("Cannot redirect standard handles for program: %s."), + safe_strerror (errno)); + } /* Set the console device of the inferior to whatever mode (raw or cooked) we found it last time. */ if (terminal_is_ours) - { - if (inf_mode_valid) - device_mode (0, inf_terminal_mode); - terminal_is_ours = 0; - } + { + if (inf_mode_valid) + device_mode (0, inf_terminal_mode); + terminal_is_ours = 0; + } } void @@ -957,25 +957,25 @@ go32_nat_target::terminal_ours () /* Switch to cooked mode on the gdb terminal and save the inferior terminal mode to be restored when it is resumed. */ if (!terminal_is_ours) - { - inf_terminal_mode = device_mode (0, 0); - if (inf_terminal_mode != -1) - inf_mode_valid = 1; - else - /* If device_mode returned -1, we don't know what happens with - handle 0 anymore, so make the info invalid. */ - inf_mode_valid = 0; - terminal_is_ours = 1; - - /* Restore debugger's standard handles. */ - errno = 0; - if (redir_to_debugger (&child_cmd) == -1) { - redir_to_child (&child_cmd); - error (_("Cannot redirect standard handles for debugger: %s."), - safe_strerror (errno)); + inf_terminal_mode = device_mode (0, 0); + if (inf_terminal_mode != -1) + inf_mode_valid = 1; + else + /* If device_mode returned -1, we don't know what happens with + handle 0 anymore, so make the info invalid. */ + inf_mode_valid = 0; + terminal_is_ours = 1; + + /* Restore debugger's standard handles. */ + errno = 0; + if (redir_to_debugger (&child_cmd) == -1) + { + redir_to_child (&child_cmd); + error (_("Cannot redirect standard handles for debugger: %s."), + safe_strerror (errno)); + } } - } } void |