ultrix_exec_ecoff.c revision 1.1.2.2 1 1.1.2.2 bouyer /* $NetBSD: ultrix_exec_ecoff.c,v 1.1.2.2 2000/12/13 15:49:57 bouyer Exp $ */
2 1.1.2.2 bouyer
3 1.1.2.2 bouyer /*
4 1.1.2.2 bouyer * Copyright (c) 1995, 1997 Jonathan Stone (hereinafter referred to as the author)
5 1.1.2.2 bouyer * All rights reserved.
6 1.1.2.2 bouyer *
7 1.1.2.2 bouyer * Redistribution and use in source and binary forms, with or without
8 1.1.2.2 bouyer * modification, are permitted provided that the following conditions
9 1.1.2.2 bouyer * are met:
10 1.1.2.2 bouyer * 1. Redistributions of source code must retain the above copyright
11 1.1.2.2 bouyer * notice, this list of conditions and the following disclaimer.
12 1.1.2.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
13 1.1.2.2 bouyer * notice, this list of conditions and the following disclaimer in the
14 1.1.2.2 bouyer * documentation and/or other materials provided with the distribution.
15 1.1.2.2 bouyer * 3. All advertising materials mentioning features or use of this software
16 1.1.2.2 bouyer * must display the following acknowledgement:
17 1.1.2.2 bouyer * This product includes software developed by Jonathan Stone for
18 1.1.2.2 bouyer * the NetBSD Project.
19 1.1.2.2 bouyer * 4. The name of the author may not be used to endorse or promote products
20 1.1.2.2 bouyer * derived from this software without specific prior written permission.
21 1.1.2.2 bouyer *
22 1.1.2.2 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
23 1.1.2.2 bouyer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1.2.2 bouyer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1.2.2 bouyer * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
26 1.1.2.2 bouyer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1.2.2 bouyer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1.2.2 bouyer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1.2.2 bouyer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1.2.2 bouyer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1.2.2 bouyer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1.2.2 bouyer * SUCH DAMAGE.
33 1.1.2.2 bouyer */
34 1.1.2.2 bouyer
35 1.1.2.2 bouyer /*
36 1.1.2.2 bouyer * Copyright (c) 1992, 1993
37 1.1.2.2 bouyer * The Regents of the University of California. All rights reserved.
38 1.1.2.2 bouyer *
39 1.1.2.2 bouyer * This software was developed by the Computer Systems Engineering group
40 1.1.2.2 bouyer * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
41 1.1.2.2 bouyer * contributed to Berkeley.
42 1.1.2.2 bouyer *
43 1.1.2.2 bouyer * All advertising materials mentioning features or use of this software
44 1.1.2.2 bouyer * must display the following acknowledgement:
45 1.1.2.2 bouyer * This product includes software developed by the University of
46 1.1.2.2 bouyer * California, Lawrence Berkeley Laboratory.
47 1.1.2.2 bouyer *
48 1.1.2.2 bouyer * Redistribution and use in source and binary forms, with or without
49 1.1.2.2 bouyer * modification, are permitted provided that the following conditions
50 1.1.2.2 bouyer * are met:
51 1.1.2.2 bouyer * 1. Redistributions of source code must retain the above copyright
52 1.1.2.2 bouyer * notice, this list of conditions and the following disclaimer.
53 1.1.2.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
54 1.1.2.2 bouyer * notice, this list of conditions and the following disclaimer in the
55 1.1.2.2 bouyer * documentation and/or other materials provided with the distribution.
56 1.1.2.2 bouyer * 3. All advertising materials mentioning features or use of this software
57 1.1.2.2 bouyer * must display the following acknowledgement:
58 1.1.2.2 bouyer * This product includes software developed by the University of
59 1.1.2.2 bouyer * California, Berkeley and its contributors.
60 1.1.2.2 bouyer * 4. Neither the name of the University nor the names of its contributors
61 1.1.2.2 bouyer * may be used to endorse or promote products derived from this software
62 1.1.2.2 bouyer * without specific prior written permission.
63 1.1.2.2 bouyer *
64 1.1.2.2 bouyer * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
65 1.1.2.2 bouyer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
66 1.1.2.2 bouyer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
67 1.1.2.2 bouyer * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
68 1.1.2.2 bouyer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
69 1.1.2.2 bouyer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
70 1.1.2.2 bouyer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
71 1.1.2.2 bouyer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
72 1.1.2.2 bouyer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
73 1.1.2.2 bouyer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
74 1.1.2.2 bouyer * SUCH DAMAGE.
75 1.1.2.2 bouyer *
76 1.1.2.2 bouyer *
77 1.1.2.2 bouyer * @(#)sun_misc.c 8.1 (Berkeley) 6/18/93
78 1.1.2.2 bouyer *
79 1.1.2.2 bouyer * from: Header: sun_misc.c,v 1.16 93/04/07 02:46:27 torek Exp
80 1.1.2.2 bouyer */
81 1.1.2.2 bouyer
82 1.1.2.2 bouyer /*
83 1.1.2.2 bouyer * Ultrix compatibility module.
84 1.1.2.2 bouyer */
85 1.1.2.2 bouyer
86 1.1.2.2 bouyer #include <sys/param.h>
87 1.1.2.2 bouyer #include <sys/exec.h>
88 1.1.2.2 bouyer
89 1.1.2.2 bouyer #include <sys/exec_ecoff.h>
90 1.1.2.2 bouyer #include <compat/ultrix/ultrix_exec.h>
91 1.1.2.2 bouyer
92 1.1.2.2 bouyer /*
93 1.1.2.2 bouyer * cpu_exec_ecoff_probe():
94 1.1.2.2 bouyer * cpu-dependent ECOFF format hook for execve().
95 1.1.2.2 bouyer *
96 1.1.2.2 bouyer * Do any machine-dependent diddling of the exec package when doing ECOFF.
97 1.1.2.2 bouyer *
98 1.1.2.2 bouyer */
99 1.1.2.2 bouyer int
100 1.1.2.2 bouyer ultrix_exec_ecoff_probe(p, epp)
101 1.1.2.2 bouyer struct proc *p;
102 1.1.2.2 bouyer struct exec_package *epp;
103 1.1.2.2 bouyer {
104 1.1.2.2 bouyer /* XXX should add some check here */
105 1.1.2.2 bouyer return 0;
106 1.1.2.2 bouyer }
107