Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 // Common/Alloc.h
3 #ifndef __COMMON_ALLOC_H
4 #define __COMMON_ALLOC_H
6 #include <stddef.h>
8 void *MyAlloc(size_t size) throw();
9 void MyFree(void *address) throw();
11 #ifdef _WIN32
13 bool SetLargePageSize();
15 void *MidAlloc(size_t size) throw();
16 void MidFree(void *address) throw();
17 void *BigAlloc(size_t size) throw();
18 void BigFree(void *address) throw();
20 #else
22 #define MidAlloc(size) MyAlloc(size)
23 #define MidFree(address) MyFree(address)
24 #define BigAlloc(size) MyAlloc(size)
25 #define BigFree(address) MyFree(address)
27 #endif
29 #endif