From 5c9cceced780c222f8b5e624c97c3b6eda1c8d2c Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 2 Dec 2003 01:36:08 +0000 Subject: white space --- winsup/cygwin/thread.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'winsup/cygwin/thread.h') diff --git a/winsup/cygwin/thread.h b/winsup/cygwin/thread.h index 0cba6cd48..b924957e4 100644 --- a/winsup/cygwin/thread.h +++ b/winsup/cygwin/thread.h @@ -144,8 +144,8 @@ public: win32_obj_id = ::CreateSemaphore (&sec_none_nih, 0, LONG_MAX, NULL); if (!win32_obj_id) { - debug_printf ("CreateSemaphore failed. %E"); - return false; + debug_printf ("CreateSemaphore failed. %E"); + return false; } return true; } @@ -242,14 +242,14 @@ List_remove (fast_mutex &mx, list_node *&head, list_node *node) if (head) { if (InterlockedCompareExchangePointer (&head, node->next, node) != node) - { - list_node *cur = head; - - while (cur->next && node != cur->next) - cur = cur->next; - if (node == cur->next) - cur->next = cur->next->next; - } + { + list_node *cur = head; + + while (cur->next && node != cur->next) + cur = cur->next; + if (node == cur->next) + cur->next = cur->next->next; + } } mx.unlock (); } @@ -288,8 +288,8 @@ template class List list_node *cur = head; while (cur) { - (cur->*callback) (); - cur = cur->next; + (cur->*callback) (); + cur = cur->next; } mx.unlock (); } @@ -689,8 +689,8 @@ private: { if (waiting_writers) { - if (!readers) - cond_writers.unblock (false); + if (!readers) + cond_writers.unblock (false); } else if (waiting_readers) cond_readers.unblock (true); -- cgit v1.2.3