comparison src/os/posix/vm/os_posix.cpp @ 10423:a6697eaddebd

Merge.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 19 Jun 2013 21:54:38 +0200
parents e12c9b3740db
children 5e3b6f79d280
comparison
equal deleted inserted replaced
10422:a47dd157277e 10423:a6697eaddebd
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 }