xref: /netbsd-src/usr.sbin/cpuctl/arch/x86_64.c (revision 51e7ff401b9235e0f8950add804972edac275a68)
1*51e7ff40Sad /*	$NetBSD: x86_64.c,v 1.1 2008/05/05 17:54:14 ad Exp $	*/
2*51e7ff40Sad 
3*51e7ff40Sad /*-
4*51e7ff40Sad  * Copyright (c) 2008 The NetBSD Foundation, Inc.
5*51e7ff40Sad  * All rights reserved.
6*51e7ff40Sad  *
7*51e7ff40Sad  * Redistribution and use in source and binary forms, with or without
8*51e7ff40Sad  * modification, are permitted provided that the following conditions
9*51e7ff40Sad  * are met:
10*51e7ff40Sad  * 1. Redistributions of source code must retain the above copyright
11*51e7ff40Sad  *    notice, this list of conditions and the following disclaimer.
12*51e7ff40Sad  * 2. Redistributions in binary form must reproduce the above copyright
13*51e7ff40Sad  *    notice, this list of conditions and the following disclaimer in the
14*51e7ff40Sad  *    documentation and/or other materials provided with the distribution.
15*51e7ff40Sad  *
16*51e7ff40Sad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17*51e7ff40Sad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18*51e7ff40Sad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19*51e7ff40Sad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20*51e7ff40Sad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21*51e7ff40Sad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22*51e7ff40Sad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23*51e7ff40Sad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24*51e7ff40Sad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25*51e7ff40Sad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26*51e7ff40Sad  * POSSIBILITY OF SUCH DAMAGE.
27*51e7ff40Sad  */
28*51e7ff40Sad 
29*51e7ff40Sad #include <sys/cdefs.h>
30*51e7ff40Sad #ifndef lint
31*51e7ff40Sad __RCSID("$NetBSD: x86_64.c,v 1.1 2008/05/05 17:54:14 ad Exp $");
32*51e7ff40Sad #endif /* not lint */
33*51e7ff40Sad 
34*51e7ff40Sad #include "i386.c"
35