vdso.h revision 259065
1219888Sed/*-
2267123Semaste * Copyright 2012 Konstantin Belousov <kib@FreeBSD.ORG>.
3219888Sed * All rights reserved.
4219888Sed *
5219888Sed * Redistribution and use in source and binary forms, with or without
6219888Sed * modification, are permitted provided that the following conditions
7219888Sed * are met:
8219888Sed * 1. Redistributions of source code must retain the above copyright
9219888Sed *    notice, this list of conditions and the following disclaimer.
10219888Sed * 2. Redistributions in binary form must reproduce the above copyright
11219888Sed *    notice, this list of conditions and the following disclaimer in the
12219888Sed *    documentation and/or other materials provided with the distribution.
13219888Sed *
14219888Sed * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15219888Sed * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16219888Sed * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17219888Sed * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18219888Sed * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19219888Sed * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20219888Sed * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21219888Sed * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22219888Sed * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23219888Sed * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24219888Sed *
25219888Sed * $FreeBSD: releng/10.0/sys/ia64/include/vdso.h 237433 2012-06-22 07:06:40Z kib $
26219888Sed */
27219888Sed
28219888Sed#ifndef _IA64_VDSO_H
29219888Sed#define	_IA64_VDSO_H
30219888Sed
31219888Sed#define	VDSO_TIMEHANDS_MD			\
32219888Sed	uint32_t	th_res[8];
33267035Semaste
34267035Semaste#ifdef _KERNEL
35219888Sed#ifdef COMPAT_FREEBSD32
36219888Sed
37219888Sed#define	VDSO_TIMEHANDS_MD32	VDSO_TIMEHANDS_MD
38219888Sed
39219888Sed#endif
40267301Semaste#endif
41219888Sed#endif
42219888Sed