mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 04:24:49 +02:00
8166117: Add UTC timestamp decorator for UL
Reviewed-by: rehn, rprotacio
This commit is contained in:
parent
a4cfffae9b
commit
8641d21c56
8 changed files with 87 additions and 11 deletions
|
@ -188,6 +188,10 @@ int os::get_fileno(FILE* fp) {
|
|||
return NOT_AIX(::)fileno(fp);
|
||||
}
|
||||
|
||||
struct tm* os::gmtime_pd(const time_t* clock, struct tm* res) {
|
||||
return gmtime_r(clock, res);
|
||||
}
|
||||
|
||||
void os::Posix::print_load_average(outputStream* st) {
|
||||
st->print("load average:");
|
||||
double loadavg[3];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue