commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hurd] 01/03: Fix indentation


From: Samuel Thibault
Subject: [hurd] 01/03: Fix indentation
Date: Tue, 17 Jan 2017 11:19:40 +0000

This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch upstream
in repository hurd.

commit 7ff15eaca93ef512fb9ef67068032e09d3f7cef3
Author: Samuel Thibault <address@hidden>
Date:   Mon Jan 2 20:17:59 2017 +0100

    Fix indentation
---
 random/random.c | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/random/random.c b/random/random.c
index 828e83a..69176b7 100644
--- a/random/random.c
+++ b/random/random.c
@@ -309,30 +309,30 @@ trivfs_S_io_select (struct trivfs_protid *cred,
   if (*type == 0)
     return 0;
 
-    pthread_mutex_lock (&global_lock);
+  pthread_mutex_lock (&global_lock);
 
-    while (1)
-      {
-       /* XXX Before initialization, readable_pool depends on length.  */
-       int avail = readable_pool (POOLSIZE/2, level);
-
-       if (avail != 0 || *type & SELECT_WRITE)
-         {
-           *type = (avail ? SELECT_READ : 0) | (*type & SELECT_WRITE);
-           pthread_mutex_unlock (&global_lock);
-           return 0;
-         }
-
-       ports_interrupt_self_on_port_death (cred, reply);
-       read_blocked = 1;
-
-       if (pthread_hurd_cond_wait_np (&select_alert, &global_lock))
-         {
-           *type = 0;
-           pthread_mutex_unlock (&global_lock);
-           return EINTR;
-         }
-      }
+  while (1)
+    {
+      /* XXX Before initialization, readable_pool depends on length.  */
+      int avail = readable_pool (POOLSIZE/2, level);
+
+      if (avail != 0 || *type & SELECT_WRITE)
+       {
+         *type = (avail ? SELECT_READ : 0) | (*type & SELECT_WRITE);
+         pthread_mutex_unlock (&global_lock);
+         return 0;
+       }
+
+      ports_interrupt_self_on_port_death (cred, reply);
+      read_blocked = 1;
+
+      if (pthread_hurd_cond_wait_np (&select_alert, &global_lock))
+       {
+         *type = 0;
+         pthread_mutex_unlock (&global_lock);
+         return EINTR;
+       }
+    }
 }
 
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/hurd.git



reply via email to

[Prev in Thread] Current Thread [Next in Thread]