xref: /titanic_41/usr/src/uts/common/sys/timer.h (revision 505d05c73a6e56769f263d4803b22eddd168ee24)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef	_SYS_TIMER_H
28 #define	_SYS_TIMER_H
29 
30 #pragma ident	"%Z%%M%	%I%	%E% SMI"
31 
32 #include <sys/types.h>
33 #include <sys/proc.h>
34 #include <sys/thread.h>
35 
36 #ifdef	__cplusplus
37 extern "C" {
38 #endif
39 
40 #ifdef	_KERNEL
41 
42 #define	_TIMER_MAX 32
43 
44 /*
45  * Bit values for the it_lock field.
46  */
47 #define	ITLK_LOCKED		0x01
48 #define	ITLK_WANTED		0x02
49 #define	ITLK_REMOVE		0x04
50 
51 /*
52  * Bit values for the it_flags field.
53  */
54 #define	IT_SIGNAL		0x01
55 #define	IT_PORT			0x02	/* use event port notification */
56 
57 struct clock_backend;
58 
59 typedef struct itimer {
60 	itimerspec_t	it_itime;
61 	hrtime_t	it_hrtime;
62 	ushort_t	it_flags;
63 	ushort_t	it_lock;
64 	void		*it_arg;
65 	sigqueue_t	*it_sigq;
66 	klwp_t		*it_lwp;
67 	struct proc	*it_proc;
68 	kcondvar_t	it_cv;
69 	int		it_blockers;
70 	int		it_pending;
71 	int		it_overrun;
72 	struct clock_backend *it_backend;
73 	kmutex_t	it_mutex;
74 	void		*it_portev;	/* port_kevent_t pointer */
75 	void		*it_portsrc;	/* port_source_t pointer */
76 	int		it_portfd;	/* port file descriptor */
77 } itimer_t;
78 
79 typedef struct clock_backend {
80 	struct sigevent clk_default;
81 	int (*clk_clock_settime)(timespec_t *);
82 	int (*clk_clock_gettime)(timespec_t *);
83 	int (*clk_clock_getres)(timespec_t *);
84 	int (*clk_timer_create)(itimer_t *, struct sigevent *);
85 	int (*clk_timer_settime)(itimer_t *, int, const struct itimerspec *);
86 	int (*clk_timer_gettime)(itimer_t *, struct itimerspec *);
87 	int (*clk_timer_delete)(itimer_t *);
88 	void (*clk_timer_lwpbind)(itimer_t *);
89 } clock_backend_t;
90 
91 extern void clock_add_backend(clockid_t clock, clock_backend_t *backend);
92 
93 extern void timer_fire(itimer_t *);
94 extern void timer_lwpbind();
95 
96 extern	void	timer_func(sigqueue_t *);
97 extern	void	timer_exit(void);
98 extern	void	timer_lwpexit(void);
99 extern	clock_t	hzto(struct timeval *);
100 extern	clock_t	timespectohz(timespec_t *, timespec_t);
101 extern	clock_t	timespectohz_adj(timespec_t *, timespec_t);
102 extern	int	itimerspecfix(timespec_t *);
103 extern	void	timespecadd(timespec_t *, timespec_t *);
104 extern	void	timespecsub(timespec_t *, timespec_t *);
105 extern	void	timespecfix(timespec_t *);
106 extern	int	xgetitimer(uint_t, struct itimerval *, int);
107 extern	int	xsetitimer(uint_t, struct itimerval *, int);
108 
109 #define	timerspecisset(tvp)		((tvp)->tv_sec || (tvp)->tv_nsec)
110 #define	timerspeccmp(tvp, uvp)		(((tvp)->tv_sec - (uvp)->tv_sec) ? \
111 	((tvp)->tv_sec - (uvp)->tv_sec):((tvp)->tv_nsec - (uvp)->tv_nsec))
112 #define	timerspecclear(tvp)		((tvp)->tv_sec = (tvp)->tv_nsec = 0)
113 
114 struct oldsigevent {
115 	/* structure definition prior to notification attributes member */
116 	int		_notify;
117 	union {
118 		int		_signo;
119 		void		(*_notify_function)(union sigval);
120 	} _un;
121 	union sigval	_value;
122 };
123 
124 #if defined(_SYSCALL32)
125 
126 struct oldsigevent32 {
127 	int32_t		_notify;
128 	union {
129 		int32_t		_signo;
130 		caddr32_t	_notify_function;
131 	} _un;
132 	union sigval32	_value;
133 };
134 
135 #endif	/* _SYSCALL32 */
136 #endif	/* _KERNEL */
137 
138 #ifdef	__cplusplus
139 }
140 #endif
141 
142 #endif	/* _SYS_TIMER_H */
143