X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=psi.d%2Ftime.psi;h=152eba36ff51f74e43f28d4dd120b4b326539f47;hp=2ad6e64370164bfd3dd6da9bb851315935cb14eb;hb=01147b369f0fde8119074435b296bd8197489088;hpb=cffcbdd1df9f6d5dcf78f49a3d1b44cefe21b2f5 diff --git a/psi.d/time.psi b/psi.d/time.psi index 2ad6e64..152eba3 100644 --- a/psi.d/time.psi +++ b/psi.d/time.psi @@ -1,4 +1,10 @@ +#ifdef __linux__ /* old, anyway */ +lib "rt"; +#endif + +#include #include +#include // extern time_t time(time_t *t); function psi\time() : int { @@ -8,8 +14,8 @@ function psi\time() : int { // extern int gettimeofday(struct timeval *tp, struct timezone *tz); function psi\gettimeofday(array &$tv = NULL, array &$tz = NULL) : int { - let tp = calloc(1, psi\SIZEOF_STRUCT_TIMEVAL); - let tz = calloc(1, psi\SIZEOF_STRUCT_TIMEZONE); + let tp = calloc(1, sizeof(struct timeval)); + let tz = calloc(1, sizeof(struct timezone)); return gettimeofday(tp, tz) as to_int(gettimeofday); set $tv = to_array(*tp, to_int(tv_sec), @@ -48,7 +54,7 @@ function psi\asctime_r(array $tm) : string { intval($tm_yday), intval($tm_isdst) ); - let buf = calloc(32, psi\SIZEOF_CHAR); + let buf = calloc(32, sizeof(char)); return asctime_r(tm, buf) as to_string(asctime_r); } @@ -71,7 +77,7 @@ function psi\gmtime(int $ts) : array { // extern struct tm *gmtime_r(time_t *t, struct tm *buf); function psi\gmtime_r(int $ts) : array { let t = &intval($ts); - let buf = calloc(1, psi\SIZEOF_STRUCT_TM); + let buf = calloc(1, sizeof(struct tm)); return gmtime_r(t, buf) as to_array(*gmtime_r, to_int(tm_sec), to_int(tm_min), @@ -91,7 +97,7 @@ function psi\nanosleep(array $rq = NULL, array &$rm = NULL) : int { intval($tv_sec), intval($tv_nsec) ); - let rmts = calloc(1, psi\SIZEOF_STRUCT_TIMESPEC); + let rmts = calloc(1, sizeof(struct timespec)); return nanosleep(rqts, rmts) as to_int(nanosleep); set $rm = to_array(*rmts, to_int(tv_sec), @@ -99,9 +105,10 @@ function psi\nanosleep(array $rq = NULL, array &$rm = NULL) : int { ); } + // extern clock_t times(struct tms *buf); function psi\times(array &$tms = NULL) : int { - let buf = calloc(1, psi\SIZEOF_STRUCT_TMS); + let buf = calloc(1, sizeof(struct tms)); return times(buf) as to_int(times); set $tms = to_array(*buf, to_int(tms_utime), @@ -110,3 +117,12 @@ function psi\times(array &$tms = NULL) : int { to_int(tms_cstime) ); } + + +function psi\tzset() : void { + return tzset() as void(tzset); +} + +function psi\tzname() : array { + return tzname_get() as to_array(*tzname_get, 2, to_string(*tzname_get)); +}