2018-11-07 21:38:24 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "util/dprintf.h"
|
|
|
|
|
2019-03-03 22:55:47 +00:00
|
|
|
static long dbg_buf_lock_init;
|
|
|
|
static CRITICAL_SECTION dbg_buf_lock;
|
2018-11-07 21:38:24 +00:00
|
|
|
static char dbg_buf[16384];
|
|
|
|
static size_t dbg_buf_pos;
|
|
|
|
|
|
|
|
void dprintf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
dprintfv(fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dprintfv(const char *fmt, va_list ap)
|
|
|
|
{
|
2019-03-03 22:55:47 +00:00
|
|
|
long init;
|
|
|
|
|
|
|
|
/* Static constructors in C are difficult to do in a way that works under
|
|
|
|
both GCC and MSVC, so we have to use atomic ops to ensure that the
|
|
|
|
buffer mutex is correctly initialized instead. */
|
|
|
|
|
|
|
|
do {
|
|
|
|
init = InterlockedCompareExchange(&dbg_buf_lock_init, 0, 1);
|
|
|
|
|
|
|
|
if (init == 0) {
|
|
|
|
/* We won the init race, global variable is now set to 1, other
|
|
|
|
threads will spin until it becomes -1. */
|
|
|
|
InitializeCriticalSection(&dbg_buf_lock);
|
|
|
|
dbg_buf_lock_init = -1;
|
|
|
|
init = -1;
|
|
|
|
}
|
|
|
|
} while (init >= 0);
|
|
|
|
|
|
|
|
EnterCriticalSection(&dbg_buf_lock);
|
|
|
|
|
2018-11-07 21:38:24 +00:00
|
|
|
dbg_buf_pos += vsnprintf_s(
|
|
|
|
dbg_buf + dbg_buf_pos,
|
|
|
|
sizeof(dbg_buf) - dbg_buf_pos,
|
|
|
|
sizeof(dbg_buf) - dbg_buf_pos - 1,
|
|
|
|
fmt,
|
|
|
|
ap);
|
|
|
|
|
|
|
|
if (dbg_buf_pos + 1 > sizeof(dbg_buf)) {
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2019-03-03 22:55:47 +00:00
|
|
|
if (strchr(dbg_buf, '\n') != NULL) {
|
|
|
|
OutputDebugStringA(dbg_buf);
|
|
|
|
dbg_buf_pos = 0;
|
|
|
|
dbg_buf[0] = '\0';
|
2018-11-07 21:38:24 +00:00
|
|
|
}
|
|
|
|
|
2019-03-03 22:55:47 +00:00
|
|
|
LeaveCriticalSection(&dbg_buf_lock);
|
2018-11-07 21:38:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dwprintf(const wchar_t *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
dwprintfv(fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dwprintfv(const wchar_t *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
wchar_t msg[512];
|
|
|
|
|
|
|
|
_vsnwprintf_s(msg, _countof(msg), _countof(msg) - 1, fmt, ap);
|
|
|
|
OutputDebugStringW(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|