]> sourceware.org Git - newlib-cygwin.git/commitdiff
Reformat some too-long lines
authorCorinna Vinschen <corinna@vinschen.de>
Mon, 27 Jun 2016 16:00:56 +0000 (18:00 +0200)
committerCorinna Vinschen <corinna@vinschen.de>
Mon, 27 Jun 2016 16:00:56 +0000 (18:00 +0200)
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
winsup/cygwin/fhandler_process.cc
winsup/utils/pldd.c

index 216f095c98b87b1a9ef3a114103362a24be1fb1f..eb2bf8a3e1ed1ae8cdf2b50368e18271be3acbe1 100644 (file)
@@ -738,7 +738,8 @@ struct thread_info
        r = (region *) malloc (sizeof (region));
        if (r)
          {
-           *r = (region) { regions, (ULONG) (ULONG_PTR) thread[i].ClientId.UniqueThread,
+           *r = (region) { regions,
+                           (ULONG) (ULONG_PTR) thread[i].ClientId.UniqueThread,
                            (char *) (teb.DeallocationStack
                                      ?: teb.Tib.StackLimit),
                            (char *) teb.Tib.StackBase,
@@ -877,7 +878,8 @@ format_process_maps (void *data, char *&destbuf)
          static DWORD const RW = (PAGE_EXECUTE_READWRITE | PAGE_READWRITE
                                   | PAGE_EXECUTE_WRITECOPY | PAGE_WRITECOPY);
          static DWORD const X = (PAGE_EXECUTE | PAGE_EXECUTE_READ
-                                 | PAGE_EXECUTE_READWRITE | PAGE_EXECUTE_WRITECOPY);
+                                 | PAGE_EXECUTE_READWRITE
+                                 | PAGE_EXECUTE_WRITECOPY);
          static DWORD const WC = (PAGE_EXECUTE_WRITECOPY | PAGE_WRITECOPY);
          DWORD p = mb.Protect;
          a = (access) {{
index 84c5b9168b4654448dff3bd51a33df82c4f2050a..f977419500ffa7c19e36db956ea4b6f6c89575ed 100644 (file)
@@ -122,7 +122,8 @@ main (int argc, char *argv[])
   fd = fopen (exefile, "rb");
   fscanf (fd, "%s", exename);
 
-  hProcess = OpenProcess (PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, 0, winpid);
+  hProcess = OpenProcess (PROCESS_QUERY_INFORMATION | PROCESS_VM_READ,
+                         0, winpid);
   if (!hProcess)
     error (1, EPERM, "cannot attach to process %d", pid);
 
This page took 0.032483 seconds and 5 git commands to generate.