Removed reference to deprecated function in lieu of toku portability layer.

git-svn-id: file:///svn/toku/tokudb.1032b@8298 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Yoni Fogel 2013-04-16 23:57:31 -04:00
parent 1916540130
commit ca04a5aa52

View file

@ -264,7 +264,7 @@ int main (int argc, const char *argv[]) {
#endif
#if defined __linux__ && __linux__
char fname[256];
sprintf(fname, "/proc/%d/status", getpid());
sprintf(fname, "/proc/%d/status", toku_os_getpid());
FILE *f = fopen(fname, "r");
if (f) {
char line[256];