updated #ifdefs for WINDOZE

git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-peernet@4309 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2011-06-20 18:05:45 +00:00
parent f759638630
commit 209768a5ed

View File

@ -7,7 +7,7 @@ uint32_t bdRandom::index = 0 ;
std::vector<uint32_t> bdRandom::MT(bdRandom::N,0u) ;
bdMutex bdRandom::rndMtx ;
#ifdef WINDOWS_SYS
#if defined(_WIN32) || defined(__MINGW32__)
static bool auto_seed = bdRandom::seed( (time(NULL) + ((uint32_t) pthread_self().p)*0x1293fe)^0x18e34a12 ) ;
#else
#ifdef __APPLE__