[Go to CFHT Home Page] Man Pages
Back to Software Index  BORDER=0Manpage Top Level
    drv_hztousec(9F) manual page Table of Contents

Name

drv_hztousec - convert clock ticks to microseconds

Synopsis


#include <sys/types.h>
#include <sys/ddi.h>

clock_t drv_hztousec(clock_t hertz);

Interface Level

Architecture independent level 1 (DDI/DKI).

Arguments

hertz
The number of clock ticks to convert.

Description

drv_hztousec() converts into microseconds the time expressed by hertz, which is in system clock ticks.

The kernel variable lbolt, which is (only) readable through drv_getparm(9F) , is the length of time the system has been up since boot and is expressed in clock ticks. Drivers often use the value of lbolt before and after an I/O request to measure the amount of time it took the device to process the request. drv_hztousec() can be used by the driver to convert the reading from clock ticks to a known unit of time.

Return Values

The number of microseconds equivalent to the hertz argument.
No error value is returned. If the microsecond equivalent to hertz is too large to be represented as a clock_t, then the maximum clock_t value will be returned.

Context

drv_hztousec() can be called from user or interrupt context.

See Also

drv_getparm(9F) , drv_usectohz(9F) , drv_usecwait(9F)


Table of Contents