Deleted Added
full compact
linux_dummy.c (30994) linux_dummy.c (41931)
1/*-
2 * Copyright (c) 1994-1995 S�ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
1/*-
2 * Copyright (c) 1994-1995 S�ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $Id: linux_dummy.c,v 1.7 1997/10/29 08:17:09 kato Exp $
28 * $Id: linux_dummy.c,v 1.8 1997/11/06 19:28:52 phk Exp $
29 */
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/proc.h>
34
35#include <i386/linux/linux.h>
36#include <i386/linux/linux_proto.h>

--- 170 unchanged lines hidden (view full) ---

207int
208linux_sysinfo(struct proc *p, struct linux_sysinfo_args *args)
209{
210 printf("Linux-emul(%d): sysinfo() not supported\n", p->p_pid);
211 return ENOSYS;
212}
213
214int
29 */
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/proc.h>
34
35#include <i386/linux/linux.h>
36#include <i386/linux/linux_proto.h>

--- 170 unchanged lines hidden (view full) ---

207int
208linux_sysinfo(struct proc *p, struct linux_sysinfo_args *args)
209{
210 printf("Linux-emul(%d): sysinfo() not supported\n", p->p_pid);
211 return ENOSYS;
212}
213
214int
215linux_clone(struct proc *p, struct linux_clone_args *args)
216{
217 printf("Linux-emul(%d): clone() not supported\n", p->p_pid);
218 return ENOSYS;
219}
220
221int
222linux_uname(struct proc *p, struct linux_uname_args *args)
223{
224 printf("Linux-emul(%d): uname() not supported\n", p->p_pid);
225 return ENOSYS;
226}
227
228int
229linux_modify_ldt(struct proc *p, struct linux_modify_ldt_args *args)

--- 53 unchanged lines hidden ---
215linux_uname(struct proc *p, struct linux_uname_args *args)
216{
217 printf("Linux-emul(%d): uname() not supported\n", p->p_pid);
218 return ENOSYS;
219}
220
221int
222linux_modify_ldt(struct proc *p, struct linux_modify_ldt_args *args)

--- 53 unchanged lines hidden ---