diff options
author | Alberto Ruiz <aruiz@um.es> | 2015-09-12 19:09:01 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2015-09-12 19:09:01 +0200 |
commit | ef383cac7c61ff7d5d49b42223f546492f2c0ba3 (patch) | |
tree | 6b6e223db31857d9361f8dbc2fc8650d1210279d /packages/base/src | |
parent | 16536606a820e2160818a7a34d102ae1debc4232 (diff) | |
parent | cc41aeae35b6f5b738daa457236176e3f6b63481 (diff) |
Merge pull request #148 from varosi/feature/windows_builds
Fixed #125 build under Windows
Diffstat (limited to 'packages/base/src')
-rw-r--r-- | packages/base/src/Internal/C/vector-aux.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/base/src/Internal/C/vector-aux.c b/packages/base/src/Internal/C/vector-aux.c index a52b969..9dbf536 100644 --- a/packages/base/src/Internal/C/vector-aux.c +++ b/packages/base/src/Internal/C/vector-aux.c | |||
@@ -939,7 +939,12 @@ int vectorScan(char * file, int* n, double**pp){ | |||
939 | See: http://www.evanjones.ca/random-thread-safe.html | 939 | See: http://www.evanjones.ca/random-thread-safe.html |
940 | */ | 940 | */ |
941 | #pragma message "randomVector is not thread-safe in OSX and FreeBSD" | 941 | #pragma message "randomVector is not thread-safe in OSX and FreeBSD" |
942 | #endif | ||
942 | 943 | ||
944 | #if defined (__APPLE__) || (__FreeBSD__) || defined(_WIN32) || defined(WIN32) | ||
945 | /* Windows use thread-safe random | ||
946 | See: http://stackoverflow.com/questions/143108/is-windows-rand-s-thread-safe | ||
947 | */ | ||
943 | inline double urandom() { | 948 | inline double urandom() { |
944 | /* the probalility of matching will be theoretically p^3(in fact, it is not) | 949 | /* the probalility of matching will be theoretically p^3(in fact, it is not) |
945 | p is matching probalility of random(). | 950 | p is matching probalility of random(). |