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