Fixed: Compile error with mutex.h on Windows.

This commit is contained in:
kaetemi 2010-09-19 23:12:57 +02:00
parent e1969d46f1
commit f4518f0b28

View file

@ -19,6 +19,7 @@
#include "types_nl.h"
#include "time_nl.h"
#include "common.h"
#include <map>
#ifdef NL_OS_UNIX
@ -280,7 +281,7 @@ public:
break;
#ifdef NL_OS_WINDOWS
Sleep (wait_time);
nlSleep (wait_time);
#else
//std::cout << "Sleeping i=" << i << std::endl;
usleep( wait_time*1000 );
@ -390,7 +391,7 @@ public:
break;
#ifdef NL_OS_WINDOWS
Sleep (wait_time);
nlSleep (wait_time);
#else
//std::cout << "Sleeping i=" << i << std::endl;
usleep( wait_time*1000 );