Deleted Added
full compact
eventtimers.9 (228731) eventtimers.9 (231564)
1.\"
2.\" Copyright (c) 2011 Alexander Motin <mav@FreeBSD.org>
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright

--- 8 unchanged lines hidden (view full) ---

17.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
18.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24.\"
1.\"
2.\" Copyright (c) 2011 Alexander Motin <mav@FreeBSD.org>
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright

--- 8 unchanged lines hidden (view full) ---

17.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
18.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24.\"
25.\" $FreeBSD: head/share/man/man9/eventtimers.9 228731 2011-12-20 11:40:22Z mav $
25.\" $FreeBSD: head/share/man/man9/eventtimers.9 231564 2012-02-12 18:29:56Z ed $
26.\"
27.Dd December 14, 2011
28.Dt EVENTTIMERS 9
29.Os
30.Sh NAME
31.Nm eventtimers
32.Nd kernel event timers subsystem
33.Sh SYNOPSIS

--- 13 unchanged lines hidden (view full) ---

47 int et_flags;
48#define ET_FLAGS_PERIODIC 1
49#define ET_FLAGS_ONESHOT 2
50#define ET_FLAGS_PERCPU 4
51#define ET_FLAGS_C3STOP 8
52#define ET_FLAGS_POW2DIV 16
53 int et_quality;
54 int et_active;
26.\"
27.Dd December 14, 2011
28.Dt EVENTTIMERS 9
29.Os
30.Sh NAME
31.Nm eventtimers
32.Nd kernel event timers subsystem
33.Sh SYNOPSIS

--- 13 unchanged lines hidden (view full) ---

47 int et_flags;
48#define ET_FLAGS_PERIODIC 1
49#define ET_FLAGS_ONESHOT 2
50#define ET_FLAGS_PERCPU 4
51#define ET_FLAGS_C3STOP 8
52#define ET_FLAGS_POW2DIV 16
53 int et_quality;
54 int et_active;
55 u_int64_t et_frequency;
55 uint64_t et_frequency;
56 struct bintime et_min_period;
57 struct bintime et_max_period;
58 et_start_t *et_start;
59 et_stop_t *et_stop;
60 et_event_cb_t *et_event_cb;
61 et_deregister_cb_t *et_deregister_cb;
62 void *et_arg;
63 void *et_priv;

--- 173 unchanged lines hidden ---
56 struct bintime et_min_period;
57 struct bintime et_max_period;
58 et_start_t *et_start;
59 et_stop_t *et_stop;
60 et_event_cb_t *et_event_cb;
61 et_deregister_cb_t *et_deregister_cb;
62 void *et_arg;
63 void *et_priv;

--- 173 unchanged lines hidden ---