comparison src/os/posix/vm/os_posix.cpp @ 10195:e12c9b3740db

8012260: ciReplay: Include PID into the name of replay data file Reviewed-by: kvn, twisti
author vlivanov
date Thu, 25 Apr 2013 11:02:32 -0700
parents 754c24457b20
children 5e3b6f79d280
comparison
equal deleted inserted replaced
10141:47766e2d2527 10195:e12c9b3740db
249 *limit = lower_limit; 249 *limit = lower_limit;
250 } 250 }
251 return true; 251 return true;
252 #endif 252 #endif
253 } 253 }
254
255 const char* os::get_current_directory(char *buf, size_t buflen) {
256 return getcwd(buf, buflen);
257 }
258
259 FILE* os::open(int fd, const char* mode) {
260 return ::fdopen(fd, mode);
261 }