src/os/aix/vm/os_aix.inline.hpp

Print this page

        

*** 267,272 **** --- 267,276 ---- inline bool os::supports_monotonic_clock() { // mread_real_time() is monotonic on AIX (see os::javaTimeNanos() comments) return true; } + inline void os::exit(int num) { + ::exit(num); + } + #endif // OS_AIX_VM_OS_AIX_INLINE_HPP