attempt to make win64 faster by using avx (as opposed to sse2)

This commit is contained in:
Mark Vejvoda
2013-11-05 06:31:48 +00:00
parent 699e033a70
commit 345907fc18
10 changed files with 24 additions and 19 deletions

View File

@@ -21,6 +21,11 @@
#endif
typedef SOCKET PLATFORM_SOCKET;
#if defined(_WIN64)
#define PLATFORM_SOCKET_FORMAT_TYPE MG_I64U_SPECIFIER
#else
#define PLATFORM_SOCKET_FORMAT_TYPE "%d"
#endif
#else
#include <unistd.h>
#include <sys/socket.h>
@@ -29,7 +34,7 @@
#include <netdb.h>
typedef int PLATFORM_SOCKET;
#define PLATFORM_SOCKET_FORMAT_TYPE "%d"
#endif
#include <string>