|
|
| Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
| version 1.26, 1997/01/11 05:15:01 | version 1.27, 1997/06/11 10:04:09 | ||
|---|---|---|---|
|
|
||
| m->m_len = sizeof(struct timeval); | m->m_len = sizeof(struct timeval); | ||
| mtod(m, struct timeval *)->tv_sec = val / hz; | mtod(m, struct timeval *)->tv_sec = val / hz; | ||
| mtod(m, struct timeval *)->tv_usec = | mtod(m, struct timeval *)->tv_usec = | ||
| (val % hz) / tick; | (val % hz) * tick; | ||
| break; | break; | ||
| } | } | ||