Changeset 1577 in ntrip
- Timestamp:
- Feb 11, 2009, 4:38:09 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/latencychecker.cpp
r1572 r1577 40 40 41 41 #include <iostream> 42 #ifdef WIN32 43 #include <windows.h> 44 #endif 45 42 46 43 47 #include "latencychecker.h" … … 473 477 void latencyChecker::callScript(const char* comment) { 474 478 if (!_adviseScript.isEmpty()) { 475 sleep(1);476 479 #ifdef WIN32 480 Sleep(1); 477 481 QProcess::startDetached(_adviseScript, QStringList() << _staID << comment) ; 478 482 #else 483 sleep(1); 479 484 QProcess::startDetached("nohup", QStringList() << _adviseScript << _staID << comment) ; 480 485 #endif
Note:
See TracChangeset
for help on using the changeset viewer.