diff options
author | leak <leak@bitmx.net> | 2014-06-21 19:39:16 +0200 |
---|---|---|
committer | leak <leak@bitmx.net> | 2014-06-21 19:39:16 +0200 |
commit | 33dc72a812ad5fb6e17a26b14d6d7f9aaf5d34b5 (patch) | |
tree | 6b7a19cf1f50007dc332d2bd07c27f2766d9ec52 /src/server/shared/Common.h | |
parent | 55dee85ed80d43cc0d312d588652f85d9a027297 (diff) |
Replaced Threading and SFMT access related code with std::thread and boost TSS
Note: The remote access thread is currently broken due to unknown ACE fail (will be replaced at some point anyways..)
Diffstat (limited to 'src/server/shared/Common.h')
-rw-r--r-- | src/server/shared/Common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/server/shared/Common.h b/src/server/shared/Common.h index f6152fafc8e..8cab769ec8a 100644 --- a/src/server/shared/Common.h +++ b/src/server/shared/Common.h @@ -82,7 +82,6 @@ #include "Debugging/Errors.h" #include "Threading/LockedQueue.h" -#include "Threading/Threading.h" #if PLATFORM == PLATFORM_WINDOWS # include <ws2tcpip.h> @@ -114,8 +113,6 @@ inline float finiteAlways(float f) { return finite(f) ? f : 0.0f; } -#define atol(a) strtoul( a, NULL, 10) - #define STRINGIZE(a) #a enum TimeConstants |