mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
5f68cd8242
git-svn-id: file:///svn/toku/tokudb@18191 c7de825b-a66e-492c-adef-691d508d4ae1
16 lines
371 B
C
16 lines
371 B
C
#define _GNU_SOURCE
|
|
#include <test.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <inttypes.h>
|
|
#include <unistd.h>
|
|
#include <toku_assert.h>
|
|
#include <toku_os.h>
|
|
|
|
int test_main(int argc, char *const argv[]) {
|
|
uint64_t maxdata;
|
|
int r = toku_os_get_max_process_data_size(&maxdata);
|
|
assert(r == 0);
|
|
printf("maxdata=%"PRIu64"\n", maxdata);
|
|
return 0;
|
|
}
|