Home
last modified time | relevance | path

Searched refs:tv32 (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Dlwp_info.c64 timestruc32_t tv32[2]; in lwp_info() local
70 TIMESPEC_TO_TIMESPEC32(&tv32[0], &tv[0]); in lwp_info()
71 TIMESPEC_TO_TIMESPEC32(&tv32[1], &tv[1]); in lwp_info()
73 if (copyout(tv32, tvp, sizeof (tv32))) in lwp_info()
/illumos-gate/usr/src/uts/common/sys/
H A Dtime.h63 #define TIMEVAL32_TO_TIMEVAL(tv, tv32) { \ argument
64 (tv)->tv_sec = (time_t)(tv32)->tv_sec; \
65 (tv)->tv_usec = (tv32)->tv_usec; \
68 #define TIMEVAL_TO_TIMEVAL32(tv32, tv) { \ argument
69 (tv32)->tv_sec = (time32_t)(tv)->tv_sec; \
70 (tv32)->tv_usec = (int32_t)(tv)->tv_usec; \
/illumos-gate/usr/src/uts/common/os/
H A Dtimers.c175 struct timeval32 tv32; in gettimeofday() local
179 TIMEVAL_TO_TIMEVAL32(&tv32, &atv); in gettimeofday()
181 if (copyout(&tv32, tp, sizeof (tv32))) in gettimeofday()
/illumos-gate/usr/src/uts/common/inet/sockmods/
H A Dsockmod_pfp.c953 struct timeval32 tv32; in sdpfp_ioctl() local
954 TIMEVAL_TO_TIMEVAL32(&tv32, &tival); in sdpfp_ioctl()
955 error = ddi_copyout(&tv32, (void *)arg, in sdpfp_ioctl()
956 sizeof (tv32), mod); in sdpfp_ioctl()