" -e transport using external svn client\n"
" -p <port> listen on UDP port [default: 5501]\n"
" -s <source> source base [default: '']\n"
+#ifndef _MSC_VER
" -pid <pidfile> write PID to file\n"
+#endif
" -v be more verbose\n";
+#ifndef _MSC_VER
cout << "\n"
"Example:\n"
" pid=$(cat $pidfile 2>/dev/null)\n"
" nice /games/sport/fgs/utils/TerraSync/terrasync \\\n"
" -v -pid $pidfile -S -p 5500 -d /games/orig/terrasync &\n"
" fi\n";
+#endif
}
/** Signal handler for termination requests (Ctrl-C) */
if (verbose)
sglog().setLogLevels( SG_ALL, SG_INFO);
+#ifndef _MSC_VER
// create PID file
if (*pidfn)
{
pidstream << getpid() << endl;
pidstream.close();
}
+#endif
// install signal handlers
for (int* sigp=termination_triggering_signals; *sigp; sigp++)