gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r6741 - GNUnet/src/util/os


From: gnunet
Subject: [GNUnet-SVN] r6741 - GNUnet/src/util/os
Date: Tue, 22 Apr 2008 16:49:44 -0600 (MDT)

Author: durner
Date: 2008-04-22 16:49:43 -0600 (Tue, 22 Apr 2008)
New Revision: 6741

Modified:
   GNUnet/src/util/os/priority.c
Log:
fix mingw

Modified: GNUnet/src/util/os/priority.c
===================================================================
--- GNUnet/src/util/os/priority.c       2008-04-22 17:17:01 UTC (rev 6740)
+++ GNUnet/src/util/os/priority.c       2008-04-22 22:49:43 UTC (rev 6741)
@@ -41,31 +41,31 @@
    * and the usual numeric nice() increments */
   if (strcmp (str, "NORMAL") == 0)
 #ifdef MINGW
-    priority = NORMAL_PRIORITY_CLASS;
+         prio = NORMAL_PRIORITY_CLASS;
 #else
     prio = 0;
 #endif
   else if (strcmp (str, "ABOVE NORMAL") == 0)
 #ifdef MINGW
-    priority = ABOVE_NORMAL_PRIORITY_CLASS;
+         prio = ABOVE_NORMAL_PRIORITY_CLASS;
 #else
     prio = -5;
 #endif
   else if (strcmp (str, "BELOW NORMAL") == 0)
 #ifdef MINGW
-    priority = BELOW_NORMAL_PRIORITY_CLASS;
+         prio = BELOW_NORMAL_PRIORITY_CLASS;
 #else
     prio = 10;
 #endif
   else if (strcmp (str, "HIGH") == 0)
 #ifdef MINGW
-    priority = HIGH_PRIORITY_CLASS;
+         prio = HIGH_PRIORITY_CLASS;
 #else
     prio = -10;
 #endif
   else if (strcmp (str, "IDLE") == 0)
 #ifdef MINGW
-    priority = IDLE_PRIORITY_CLASS;
+         prio = IDLE_PRIORITY_CLASS;
 #else
     prio = 19;
 #endif
@@ -81,22 +81,22 @@
 
 #ifdef MINGW
       /* Convert the nice increment to a priority class */
-      if (priority == 0)
-        priority = NORMAL_PRIORITY_CLASS;
-      else if (priority > 0 && priority <= 10)
-        priority = BELOW_NORMAL_PRIORITY_CLASS;
-      else if (priority > 0)
-        priority = IDLE_PRIORITY_CLASS;
-      else if (priority < 0 && priority >= -10)
-        priority = ABOVE_NORMAL_PRIORITY_CLASS;
-      else if (priority < 0)
-        priority = HIGH_PRIORITY_CLASS;
+      if (prio == 0)
+        prio = NORMAL_PRIORITY_CLASS;
+      else if (prio > 0 && prio <= 10)
+        prio = BELOW_NORMAL_PRIORITY_CLASS;
+      else if (prio > 0)
+        prio = IDLE_PRIORITY_CLASS;
+      else if (prio < 0 && prio >= -10)
+        prio = ABOVE_NORMAL_PRIORITY_CLASS;
+      else if (prio < 0)
+        prio = HIGH_PRIORITY_CLASS;
 #endif
     }
 
   /* Set process priority */
 #ifdef MINGW
-  SetPriorityClass (GetCurrentProcess (), priority);
+  SetPriorityClass (GetCurrentProcess (), prio);
 #else
   errno = 0;
   nice (prio);





reply via email to

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