Commit ab4cc9ce authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

implement a dummy get_filesystem_sizes for windows refs[t:2493] #2493

git-svn-id: file:///svn/toku/tokudb@18893 c7de825b-a66e-492c-adef-691d508d4ae1
parent eee6602c
......@@ -344,3 +344,16 @@ toku_dup2(int fd, int fd2) {
}
// for now, just return zeros
int
toku_get_filesystem_sizes(const char *path, uint64_t *avail_size, uint64_t *free_size, uint64_t *total_size) {
uint64_t a = 0, f = 0, t = 0;
path = path;
if (avail_size)
*avail_size = a;
if (free_size)
*free_size = f;
if (total_size)
*total_size = t;
return 0;
}
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