X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=psi.d%2Ftime.psi;h=89074341ce0f9f7b35c2753a8433c9749c08047a;hp=7fb3cb905a981203d5671aaf79a99b0d5c2ca63b;hb=8d1d1243a8a42b0046ac670808913b3bb06c994b;hpb=b78637d9020222f1032349f231c0dc84a69797bc diff --git a/psi.d/time.psi b/psi.d/time.psi index 7fb3cb9..8907434 100644 --- a/psi.d/time.psi +++ b/psi.d/time.psi @@ -1,3 +1,7 @@ +#include +#include +#include + // extern time_t time(time_t *t); function psi\time() : int { let t = NULL; @@ -6,8 +10,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), @@ -46,7 +50,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); } @@ -69,7 +73,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), @@ -89,7 +93,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), @@ -97,9 +101,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),