mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
bc9fd74c80
svn merge --accept=postpone -r 12123:12373 ../../mysql.branches/2.0.0/tokudb/ git-svn-id: file:///svn/toku/tokudb@12375 c7de825b-a66e-492c-adef-691d508d4ae1
16 lines
360 B
C
16 lines
360 B
C
#define _GNU_SOURCE
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <inttypes.h>
|
|
#include <unistd.h>
|
|
#include <assert.h>
|
|
#include <test.h>
|
|
#include <toku_os.h>
|
|
|
|
int test_main(int argc, char *argv[]) {
|
|
uint64_t maxdata;
|
|
int r = toku_os_get_max_process_data_size(&maxdata);
|
|
assert(r == 0);
|
|
printf("maxdata=%"PRIu64"\n", maxdata);
|
|
return 0;
|
|
}
|