This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8263564: Consolidate POSIX code for runtime exit support: os::shutdow…
…n, os::abort and os::die Reviewed-by: mikael
- Loading branch information
Showing
with
55 additions
and 152 deletions.
- +0 −48 src/hotspot/os/aix/os_aix.cpp
- +0 −50 src/hotspot/os/bsd/os_bsd.cpp
- +0 −54 src/hotspot/os/linux/os_linux.cpp
- +55 −0 src/hotspot/os/posix/os_posix.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1046,54 +1046,6 @@ struct tm* os::localtime_pd(const time_t* clock, struct tm* res) { | ||
return localtime_r(clock, res); | ||
} | ||
|
||
intx os::current_thread_id() { | ||
return (intx)pthread_self(); | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters