mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 20:11:42 +01:00
400c9045f8
git-svn-id: file:///svn/toku/tokudb@8745 c7de825b-a66e-492c-adef-691d508d4ae1
15 lines
319 B
C
15 lines
319 B
C
#define _GNU_SOURCE
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <inttypes.h>
|
|
#include <unistd.h>
|
|
#include <assert.h>
|
|
#include "toku_os.h"
|
|
|
|
int main(void) {
|
|
uint64_t maxdata;
|
|
int r = toku_os_get_max_process_data_size(&maxdata);
|
|
assert(r == 0);
|
|
printf("maxdata=%"PRIu64"\n", maxdata);
|
|
return 0;
|
|
}
|