blob: 1d509d8345d6b8d65041f4ea0e589e669fb36e15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#include "actual.h"
#include "init/alloc.h"
extern "C" {
void free(void* ptr) {
static actual::ptr<void, void*> actual_free{};
if ( !actual_free ) {
actual_free = actual::get_ptr<decltype(actual_free)>("free");
}
if ( !init::from_static_buffer(ptr) ) {
actual_free(ptr);
}
}
void* malloc(size_t size) {
static actual::ptr<void*, size_t> actual_malloc{};
if ( init::dlsymContext::is_active() ) {
return init::static_malloc(size);
} else {
if ( !actual_malloc ) {
actual_malloc = actual::get_ptr<decltype(actual_malloc)>("malloc");
}
return actual_malloc(size);
}
}
void* calloc(size_t block, size_t size) {
static actual::ptr<void*, size_t, size_t> actual_calloc{};
if ( init::dlsymContext::is_active() ) {
return init::static_calloc(block, size);
} else {
if ( !actual_calloc ) {
actual_calloc = actual::get_ptr<decltype(actual_calloc)>("calloc");
}
return actual_calloc(block, size);
}
}
}
|