mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
6ebe124875
git-svn-id: file:///svn/toku/tokudb.1032b@7837 c7de825b-a66e-492c-adef-691d508d4ae1
30 lines
523 B
C
30 lines
523 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <inttypes.h>
|
|
#include <toku_os.h>
|
|
|
|
static void do_mallocs(void) {
|
|
int i;
|
|
for (i=0; i<1000; i++) {
|
|
int nbytes = 1024*1024;
|
|
void *vp = malloc(nbytes);
|
|
memset(vp, 0, nbytes);
|
|
}
|
|
}
|
|
|
|
int main(void) {
|
|
int64_t rss;
|
|
|
|
toku_os_get_max_rss(&rss);
|
|
printf("%"PRId64"\n", rss);
|
|
do_mallocs();
|
|
toku_os_get_max_rss(&rss);
|
|
printf("%"PRId64"\n", rss);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|