# TIME-SYS ## **Overview** Provides time-related structures and functions. **Since:** 1.0 **Version:** 1.0 ## **Summary** ## Files
Provides structures and functions related to the system time. |
gettimeofday (struct timeval *__restrict value, void *__restrict ovalue) |
|
setitimer (int w, const struct itimerval *__restrict value, struct itimerval *__restrict ovalue) |
|
settimeofday (const struct timeval *tv, const struct timezone *tz) |
w | Indicates the timer type. Only ITIMER_REAL is supported. |
old | Indicates the pointer to the timer value. |
value | Indicates the pointer to the timeval structure that contains the time. |
ovalue | This parameter is used for compatibility only. |
w | Indicates the timer type. Currently, only ITIMER_REAL is supported. |
value | Indicates the pointer to the timer value to set. |
ovalue | Indicates the pointer to the original timer value before the current setting, which can be NULL. |
tv | Indicates the pointer to the time to set. |
tz | Indicates the pointer to the time zone to set. This parameter is not used yet. |