Commit 2d174c35 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

ignore the 3GB address space size on win32 for now. addresses #1387

git-svn-id: file:///svn/toku/tokudb@8762 c7de825b-a66e-492c-adef-691d508d4ae1
parent a245f620
......@@ -138,7 +138,8 @@ toku_os_gettid(void) {
int
toku_os_get_max_process_data_size(uint64_t *maxdata) {
#ifdef _WIN32
// the process gets 1/2 of the 32 bit address space
// the process gets 1/2 of the 32 bit address space.
// we are ignoring the 3GB feature for now.
*maxdata = 1ULL << 31;
return 0;
#else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment