Port mq_get() to MinGW.

This commit is contained in:
Jason Evans
2015-07-21 16:45:35 -07:00
parent 00632609df
commit 1b0e4abbfd
3 changed files with 39 additions and 13 deletions

27
test/src/mq.c Normal file
View File

@@ -0,0 +1,27 @@
#include "test/jemalloc_test.h"
/*
* Sleep for approximately ns nanoseconds. No lower *nor* upper bound on sleep
* time is guaranteed.
*/
void
mq_nanosleep(unsigned ns)
{
assert(ns <= 1000*1000*1000);
#ifdef _WIN32
Sleep(ns / 1000);
#else
struct timespec timeout;
if (ns < 1000*1000*1000) {
timeout.tv_sec = 0;
timeout.tv_nsec = ns;
} else {
timeout.tv_sec = 1;
timeout.tv_nsec = 0;
}
nanosleep(&timeout, NULL);
#endif
}