Fix whitespace formatting
authorKamil Rytarowski <n54@gmx.com>
Fri, 2 Oct 2020 01:57:16 +0000 (03:57 +0200)
committerKamil Rytarowski <n54@gmx.com>
Wed, 7 Oct 2020 13:08:31 +0000 (15:08 +0200)
gdbserver/ChangeLog:

        * netbsd-low.cc: Fix whitespace formatting.
        * netbsd-amd64-low.cc: Likewise.

gdbserver/ChangeLog
gdbserver/netbsd-amd64-low.cc
gdbserver/netbsd-low.cc

index 1709f3f3f11fedc669dadd1eb687b1f96a493362..99315e9413647b6741a2b9736bbd2c222cd4b47c 100644 (file)
@@ -1,3 +1,8 @@
+2020-10-07  Kamil Rytarowski  <n54@gmx.com>
+
+       * netbsd-low.cc: Fix whitespace formatting.
+       * netbsd-amd64-low.cc: Likewise.
+
 2020-10-07  Kamil Rytarowski  <n54@gmx.com>
 
        * netbsd-low.cc (netbsd_process_target::read_memory)
index c59ebc8f2cf41d85701fabbe4b9aa08a449a785c..f3d30d7e7cc54ff1861da975a9bbd0bd8e630e6b 100644 (file)
@@ -159,11 +159,11 @@ netbsd_x86_64_store_gregset (struct regcache *regcache, const char *buf)
 
 static const struct netbsd_regset_info netbsd_target_regsets[] =
 {
- /* General Purpose Registers.  */
- {PT_GETREGS, PT_SETREGS, sizeof (struct reg),
-  netbsd_x86_64_fill_gregset, netbsd_x86_64_store_gregset},
- /* End of list marker.  */
- {0, 0, -1, NULL, NULL }
 /* General Purpose Registers.  */
 {PT_GETREGS, PT_SETREGS, sizeof (struct reg),
+   netbsd_x86_64_fill_gregset, netbsd_x86_64_store_gregset},
 /* End of list marker.  */
 {0, 0, -1, NULL, NULL }
 };
 
 /* NetBSD target op definitions for the amd64 architecture.  */
index e5ea8233e003f12d1fe3867b059be21e7ea5a5a8..e5ced113b01fbdc85a1eed1c8e42e4492d2b8770 100644 (file)
@@ -577,7 +577,7 @@ netbsd_process_target::request_interrupt ()
 {
   ptid_t inferior_ptid = ptid_of (get_first_thread ());
 
-  ::kill (inferior_ptid.pid(), SIGINT);
+  ::kill (inferior_ptid.pid (), SIGINT);
 }
 
 /* Read the AUX Vector for the specified PID, wrapping the ptrace(2) call
@@ -836,7 +836,7 @@ get_dynamic (netbsd_process_target *target, const pid_t pid)
   CORE_ADDR relocation = -1;
   for (int i = 0; relocation == -1 && i < num_phdr; i++)
     {
-      phdr_type *const p = (phdr_type *) (phdr_buf.data() + i * phdr_size);
+      phdr_type *const p = (phdr_type *) (phdr_buf.data () + i * phdr_size);
 
       if (p->p_type == PT_PHDR)
        relocation = phdr_memaddr - p->p_vaddr;