-fixing
[oweals/gnunet.git] / src / util / test_os_priority.c
index 17874a6ee283db8295dd425212b70f797a79f41f..bb740db5fad8c007511102a20faa2ec4ebf13c3d 100644 (file)
 #include "gnunet_common.h"
 #include "gnunet_os_lib.h"
 
-#define VERBOSE 0
 
 static int
 testprio ()
 {
-  pid_t child;
   if (GNUNET_OK !=
       GNUNET_OS_set_process_priority (GNUNET_OS_process_current (),
                                       GNUNET_SCHEDULER_PRIORITY_DEFAULT))
@@ -55,17 +53,6 @@ testprio ()
       GNUNET_OS_set_process_priority (GNUNET_OS_process_current (),
                                       GNUNET_SCHEDULER_PRIORITY_HIGH))
     return 1;
-#ifndef MINGW
-  child = fork ();
-  if (child == 0)
-    {
-      sleep (10);
-      exit (0);
-    }
-  if (GNUNET_OK !=
-      GNUNET_OS_set_process_priority (child, GNUNET_SCHEDULER_PRIORITY_IDLE))
-    return 1;
-#endif
   return 0;
 }