summaryrefslogtreecommitdiff
path: root/win/inspircd_memory_functions.cpp
blob: b604b02e343b0e45deee8ad55a2f497079502b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Use the global heap for this process for all allocate/free operations.
#include "inspircd_win32wrapper.h"
#include <exception>

void * ::operator new(size_t iSize)
{
	void* ptr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, iSize);		// zero memory for unix compatibility
	/* This is the correct behaviour according to C++ standards for out of memory,
	 * not returning null -- Brain*/
	if (!ptr)
		throw std::bad_alloc();
	else
		return ptr;
}

void ::operator delete(void * ptr)
{
	HeapFree(GetProcessHeap(), 0, ptr);
}