ovs-thread: We don't use fork in Windows.
authorGurucharan Shetty <gshetty@nicira.com>
Wed, 12 Mar 2014 17:32:59 +0000 (10:32 -0700)
committerGurucharan Shetty <gshetty@nicira.com>
Thu, 13 Mar 2014 21:23:48 +0000 (14:23 -0700)
Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
lib/ovs-thread.c
lib/ovs-thread.h

index 85de014..76cbbd3 100644 (file)
@@ -322,6 +322,7 @@ assert_single_threaded_at(const char *where)
     }
 }
 
+#ifndef _WIN32
 /* Forks the current process (checking that this is allowed).  Aborts with
  * VLOG_FATAL if fork() returns an error, and otherwise returns the value
  * returned by fork().
@@ -345,6 +346,7 @@ xfork_at(const char *where)
     }
     return pid;
 }
+#endif
 
 /* Notes that the process must not call fork() from now on, for the specified
  * 'reason'.  (The process may still fork() if it execs itself immediately
index 8868c51..d3bd538 100644 (file)
@@ -601,8 +601,10 @@ unsigned long long int ovsthread_counter_read(
 void assert_single_threaded_at(const char *where);
 #define assert_single_threaded() assert_single_threaded_at(SOURCE_LOCATOR)
 
+#ifndef _WIN32
 pid_t xfork_at(const char *where);
 #define xfork() xfork_at(SOURCE_LOCATOR)
+#endif
 
 void forbid_forking(const char *reason);
 bool may_fork(void);