2000-11-24 13:21:30 +03:00
|
|
|
/* $NetBSD: sunos_exec.h,v 1.3 2000/11/24 10:21:30 scw Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-11-28 21:03:18 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993 Theo de Raadt
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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. The name of the author may not be used to endorse or promote products
|
1994-01-29 02:43:26 +03:00
|
|
|
* derived from this software without specific prior written permission
|
1993-11-28 21:03:18 +03:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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 _SUNOS_EXEC_H_
|
|
|
|
#define _SUNOS_EXEC_H_
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_exec {
|
1993-11-28 21:03:18 +03:00
|
|
|
u_char a_dynamic:1; /* has a __DYNAMIC */
|
|
|
|
u_char a_toolversion:7;/* version of toolset used to create this file */
|
|
|
|
u_char a_machtype; /* machine type */
|
|
|
|
u_short a_magic; /* magic number */
|
|
|
|
};
|
1994-10-26 02:03:22 +03:00
|
|
|
#define SUNOS_M_68020 2 /* runs only on 68020 */
|
|
|
|
#define SUNOS_M_SPARC 3 /* runs only on SPARC */
|
1993-11-28 21:03:18 +03:00
|
|
|
|
1998-08-09 07:12:39 +04:00
|
|
|
#ifdef __sparc__
|
1994-10-26 02:03:22 +03:00
|
|
|
#define SUNOS_M_NATIVE SUNOS_M_SPARC
|
1993-11-28 21:03:18 +03:00
|
|
|
#else
|
1994-10-26 02:03:22 +03:00
|
|
|
#define SUNOS_M_NATIVE SUNOS_M_68020
|
1993-11-28 21:03:18 +03:00
|
|
|
#endif
|
|
|
|
|
1997-12-04 18:33:17 +03:00
|
|
|
#define SUNOS_AOUT_HDR_SIZE (sizeof(struct exec))
|
|
|
|
|
2000-11-24 13:21:30 +03:00
|
|
|
extern const struct emul emul_sunos;
|
|
|
|
|
1997-12-04 18:33:17 +03:00
|
|
|
int exec_sunos_aout_makecmds __P((struct proc *, struct exec_package *));
|
|
|
|
|
1993-11-28 21:03:18 +03:00
|
|
|
#endif /* !_SUNOS_EXEC_H_ */
|