mdbx-windows: add MDBX_AVOID_CRT.

Change-Id: I08233d777b318037372ec250c754f093b3047c94
This commit is contained in:
Leonid Yuriev
2018-10-19 15:14:40 +03:00
parent 06e39e2728
commit ecf214ca04
3 changed files with 14 additions and 4 deletions

View File

@@ -53,7 +53,9 @@ static int ntstatus2errcode(NTSTATUS status) {
* declare them here. Using these APIs also means we must link to
* ntdll.dll, which is not linked by default in user code. */
#pragma comment(lib, "ntdll.lib")
#ifdef MDBX_AVOID_CRT
#pragma comment(lib, "mdbx_ntdll_extra.lib")
#endif
extern NTSTATUS NTAPI NtCreateSection(
OUT PHANDLE SectionHandle, IN ACCESS_MASK DesiredAccess,

View File

@@ -91,6 +91,7 @@ typedef struct {
} mdbx_condmutex_t;
typedef CRITICAL_SECTION mdbx_fastmutex_t;
#ifdef MDBX_AVOID_CRT
#ifndef mdbx_malloc
static inline void *mdbx_malloc(size_t bytes) {
return LocalAlloc(LMEM_FIXED, bytes);
@@ -112,6 +113,13 @@ static inline void *mdbx_realloc(void *ptr, size_t bytes) {
#ifndef mdbx_free
#define mdbx_free LocalFree
#endif /* mdbx_free */
#else
#define mdbx_malloc malloc
#define mdbx_calloc calloc
#define mdbx_realloc realloc
#define mdbx_free free
#define mdbx_strdup _strdup
#endif /* MDBX_AVOID_CRT */
#ifndef snprintf
#define snprintf _snprintf /* ntdll */