1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/time/time_solaris.c.v

45 lines
1.1 KiB
V
Raw Normal View History

module time
2020-06-10 12:14:55 +03:00
// solaris_now returns the local time with high precision for most os:es
// this should be implemented properly with support for leap seconds.
// It uses the realtime clock to get and converts it to local time
[inline]
fn solaris_now() Time {
// get the high precision time as UTC realtime clock
// and use the nanoseconds part
mut ts := C.timespec{}
C.clock_gettime(C.CLOCK_REALTIME, &ts)
loc_tm := C.tm{}
C.localtime_r(&ts.tv_sec, &loc_tm)
2020-12-06 17:19:39 +03:00
return convert_ctime(loc_tm, int(ts.tv_nsec / 1000))
2020-06-10 12:14:55 +03:00
}
[inline]
fn solaris_utc() Time {
// get the high precision time as UTC realtime clock
// and use the nanoseconds part
mut ts := C.timespec{}
C.clock_gettime(C.CLOCK_REALTIME, &ts)
2020-12-06 17:19:39 +03:00
return unix2(int(ts.tv_sec), int(ts.tv_nsec / 1000))
2020-06-10 12:14:55 +03:00
}
// dummy to compile with all compilers
pub fn linux_now() Time {
return Time{}
}
2020-06-10 12:14:55 +03:00
// dummy to compile with all compilers
pub fn darwin_now() Time {
return Time{}
}
2020-06-10 12:14:55 +03:00
// dummy to compile with all compilers
pub fn linux_utc() Time {
return Time{}
}
2020-06-10 12:14:55 +03:00
// dummy to compile with all compilers
pub fn darwin_utc() Time {
return Time{}
2020-12-06 17:19:39 +03:00
}