MCPcopy Create free account
hub / github.com/apache/impala / kudu_malloc_usable_size

Function kudu_malloc_usable_size

be/src/kudu/util/malloc.cc:27–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25namespace kudu {
26
27int64_t kudu_malloc_usable_size(const void* obj) {
28#if defined(__linux__)
29 return malloc_usable_size(const_cast<void*>(obj));
30#else
31 return malloc_size(obj);
32#endif // defined(__linux__)
33}
34
35} // namespace kudu

Callers 11

memory_footprintMethod · 0.85
memory_footprintMethod · 0.85
memory_footprintMethod · 0.85
AllocateMethod · 0.85
DoResolutionMethod · 0.85
AllocateMethod · 0.85
AllocateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected