1292407Sbr/*-
2292407Sbr * Copyright 2012 Konstantin Belousov <kib@FreeBSD.ORG>.
3292407Sbr * All rights reserved.
4292407Sbr *
5292407Sbr * Redistribution and use in source and binary forms, with or without
6292407Sbr * modification, are permitted provided that the following conditions
7292407Sbr * are met:
8292407Sbr * 1. Redistributions of source code must retain the above copyright
9292407Sbr *    notice, this list of conditions and the following disclaimer.
10292407Sbr * 2. Redistributions in binary form must reproduce the above copyright
11292407Sbr *    notice, this list of conditions and the following disclaimer in the
12292407Sbr *    documentation and/or other materials provided with the distribution.
13292407Sbr *
14292407Sbr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15292407Sbr * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16292407Sbr * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17292407Sbr * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18292407Sbr * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19292407Sbr * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20292407Sbr * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21292407Sbr * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22292407Sbr * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23292407Sbr * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24292407Sbr *
25292407Sbr * $FreeBSD$
26292407Sbr */
27292407Sbr
28292407Sbr#ifndef _MACHINE_VDSO_H_
29292407Sbr#define	_MACHINE_VDSO_H_
30292407Sbr
31292407Sbr#define	VDSO_TIMEHANDS_MD			\
32292407Sbr	uint32_t	th_res[8];
33292407Sbr
34292407Sbr#endif /* !_MACHINE_VDSO_H_ */
35