2007-05-11 01:30:14 +04:00
|
|
|
/* $NetBSD: linux_machdep.h,v 1.16 2007/05/10 21:30:15 christos Exp $ */
|
1998-10-04 00:20:04 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Eric Haszlakiewicz.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_MACHDEP_H
|
|
|
|
#define _LINUX_MACHDEP_H
|
|
|
|
|
|
|
|
#if defined(__i386__)
|
|
|
|
#include <compat/linux/arch/i386/linux_machdep.h>
|
1998-12-15 22:31:30 +03:00
|
|
|
#elif defined(__m68k__)
|
|
|
|
#include <compat/linux/arch/m68k/linux_machdep.h>
|
1998-10-04 00:20:04 +04:00
|
|
|
#elif defined(__alpha__)
|
|
|
|
#include <compat/linux/arch/alpha/linux_machdep.h>
|
2001-01-19 04:40:38 +03:00
|
|
|
#elif defined(__powerpc__)
|
|
|
|
#include <compat/linux/arch/powerpc/linux_machdep.h>
|
2001-09-23 01:24:16 +04:00
|
|
|
#elif defined(__mips__)
|
|
|
|
#include <compat/linux/arch/mips/linux_machdep.h>
|
2002-01-15 02:14:32 +03:00
|
|
|
#elif defined(__arm__)
|
|
|
|
#include <compat/linux/arch/arm/linux_machdep.h>
|
2005-05-03 20:26:27 +04:00
|
|
|
#elif defined(__amd64__)
|
|
|
|
#include <compat/linux/arch/amd64/linux_machdep.h>
|
1998-10-04 00:20:04 +04:00
|
|
|
#else
|
|
|
|
#error Undefined linux_machdep.h machine type.
|
|
|
|
#endif
|
|
|
|
|
2007-05-11 01:30:14 +04:00
|
|
|
#ifndef LINUX_UNAME_ARCH
|
|
|
|
#define LINUX_UNAME_ARCH machine
|
|
|
|
#endif
|
|
|
|
|
2002-02-15 19:47:58 +03:00
|
|
|
#ifdef _KERNEL
|
|
|
|
__BEGIN_DECLS
|
2003-09-26 02:00:02 +04:00
|
|
|
void linux_sendsig __P((const ksiginfo_t *, const sigset_t *));
|
2002-02-15 19:47:58 +03:00
|
|
|
dev_t linux_fakedev __P((dev_t, int));
|
|
|
|
__END_DECLS
|
2005-11-05 03:47:26 +03:00
|
|
|
#ifdef LINUX_NPTL
|
|
|
|
__BEGIN_DECLS
|
2006-08-23 23:49:09 +04:00
|
|
|
void *linux_get_newtls __P((struct lwp *));
|
|
|
|
int linux_set_newtls __P((struct lwp *, void *));
|
2005-11-05 03:47:26 +03:00
|
|
|
__END_DECLS
|
|
|
|
#endif /* !LINUX_NPTL */
|
2002-02-15 19:47:58 +03:00
|
|
|
#endif /* !_KERNEL */
|
|
|
|
|
1998-10-04 00:20:04 +04:00
|
|
|
#endif /* !_LINUX_MACHDEP_H */
|