Added FIXME.

This commit is contained in:
Michael Kerrisk 2008-06-30 08:59:04 +00:00
parent 2b587e0933
commit d03d9a05b3
1 changed files with 14 additions and 0 deletions

View File

@ -244,6 +244,20 @@ fill in
.B SIGCHLD
also fills in
.IR si_status ", " si_utime " and " si_stime .
.\" FIXME .
.\" When si_utime and si_stime where originally implemented, the
.\" measurement unit was HZ, which was the same as clock ticks
.\" (sysconf(_SC_CLK_TCK)). In 2.6, HZ became configurable, and
.\" was *still* used as the unit to return the info these fields,
.\" with the result that the field values depended on the the
.\" configured HZ. Of course, the should have been measured in
.\" USER_HZ instead, so that sysconf(_SC_CLK_TCK) could be used to
.\" convert to seconds. I have a queued patch to fix this:
.\" http://thread.gmane.org/gmane.linux.kernel/698061/ .
.\" Maybe it will make it into 2.6.27.
.\" But note that these fields still don't return the times of
.\" waited for children (as is done by getrusage() and times()
.\" and wait4()). Solaris 8 does include child times.
.IP *
.IR si_int " and " si_ptr
are specified by the sender of the POSIX.1b signal.