[svn:parrot] r48730 - branches/gsoc_threads/src

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Mon Aug 30 23:06:29 UTC 2010


Author: jkeenan
Date: Mon Aug 30 23:06:29 2010
New Revision: 48730
URL: https://trac.parrot.org/parrot/changeset/48730

Log:
[codingstd] no cuddled else

Modified:
   branches/gsoc_threads/src/threads.c

Modified: branches/gsoc_threads/src/threads.c
==============================================================================
--- branches/gsoc_threads/src/threads.c	Mon Aug 30 23:05:26 2010	(r48729)
+++ branches/gsoc_threads/src/threads.c	Mon Aug 30 23:06:29 2010	(r48730)
@@ -170,7 +170,8 @@
 
         if (next_thread == tidx && task_count > 0) {
             Parrot_cx_next_task(interp, scheduler);
-        } else {
+        }
+        else {
             /* Wake up the main thread to check if we're done before
                going idle. */
             Parrot_alarm_now();


More information about the parrot-commits mailing list