[BACK]Return to hardclock.9 CVS log [TXT][DIR] Up to [local] / src / share / man / man9

File: [local] / src / share / man / man9 / hardclock.9 (download)

Revision 1.13, Fri Jun 26 18:48:31 2020 UTC (3 years, 11 months ago) by cheloha
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, HEAD
Changes since 1.12: +2 -3 lines

timecounting: deprecate time_second(9), time_uptime(9)

time_second(9) has been replaced in the kernel by gettime(9).
time_uptime(9) has been replaced in the kernel by getuptime(9).

New code should use the replacement interfaces.  They do not suffer
from the split-read problem inherent to the time_* variables on 32-bit
platforms.

The variables remain in sys/kern/kern_tc.c for use via kvm(3) when
examining kernel core dumps.

This commit completes the deprecation process:

- Remove the extern'd definitions for time_second and time_uptime
  from sys/time.h.
- Replace manpage cross-references to time_second(9)/time_uptime(9)
  with references to microtime(9) or a related interface.
- Move the time_second.9 manpage to the attic.

With input from dlg@, kettenis@, visa@, and tedu@.

ok kettenis@

.\"	$OpenBSD: hardclock.9,v 1.13 2020/06/26 18:48:31 cheloha Exp $
.\"
.\" Copyright (c) 2001 Kenneth R Westerback
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer,
.\"    without modification, immediately at the beginning of the file.
.\" 2. The name of the author may not be used to endorse or promote products
.\"    derived from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
.\" IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
.\" SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
.\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
.\" THE POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd $Mdocdate: June 26 2020 $
.Dt HARDCLOCK 9
.Os
.Sh NAME
.Nm hardclock
.Nd real-time system clock
.Sh SYNOPSIS
.In sys/systm.h
.Ft void
.Fo hardclock
.Fa "struct clockframe *frame"
.Fc
.Sh DESCRIPTION
.Fn hardclock
implements the real-time system clock, interrupting
.Xr hz 9
times a second.
The argument
.Fa frame
is an opaque, machine dependent structure that encapsulates the
previous machine state.
.Pp
.Fn hardclock
performs a variety of time related housekeeping tasks, such as:
.Bl -bullet -offset indent
.It
If the current process has virtual or profiling interval
timers, update the timers and deliver appropriate signals.
.It
If there is no separate statistics clock, execute
.Fn statclock .
.It
Increment the time of day, implementing any adjustments requested by
.Xr adjtime 2
or required as a result of running an NTP daemon or other configured
external clock.
.It
Update the real-time timeout queue, calling
.Fn softclock
directly if the current interrupt priority is low enough.
.El
.Sh CODE REFERENCES
.Fn hardclock
is implemented in the file
.Pa sys/kern/kern_clock.c .
.Sh SEE ALSO
.Xr adjtime 2 ,
.Xr hz 9 ,
.Xr microtime 9 ,
.Xr spl 9 ,
.Xr timeout 9