mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
63b1969fbb
git-svn-id: file:///svn/toku/tokudb@43179 c7de825b-a66e-492c-adef-691d508d4ae1
12 lines
306 B
C
12 lines
306 B
C
#include <stdio.h>
|
|
#include "memory.h"
|
|
|
|
int main(void) {
|
|
toku_memory_startup();
|
|
LOCAL_MEMORY_STATUS_S s;
|
|
toku_memory_get_status(&s);
|
|
printf("mallocator: %s\n", s.mallocator_version);
|
|
printf("mmap threshold: %" PRIu64 "\n", s.mmap_threshold);
|
|
toku_memory_shutdown();
|
|
return 0;
|
|
}
|