8057744: (process) Synchronize exiting of threads and process [win]

Reviewed-by: dholmes, dcubed, sla
This commit is contained in:
Ivan Gerasimov 2014-09-10 09:52:41 -07:00
parent 3ad47cdbeb
commit 497f5c44a6
9 changed files with 112 additions and 30 deletions

View file

@ -263,4 +263,8 @@ inline bool os::supports_monotonic_clock() {
return Linux::_clock_gettime != NULL;
}
inline void os::exit(int num) {
::exit(num);
}
#endif // OS_LINUX_VM_OS_LINUX_INLINE_HPP