Deleted Added
full compact
linux_dummy.c (165689) linux_dummy.c (168014)
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

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

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
29#include <sys/cdefs.h>
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

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

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
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/i386/linux/linux_dummy.c 165689 2006-12-31 13:16:00Z netchild $");
30__FBSDID("$FreeBSD: head/sys/i386/linux/linux_dummy.c 168014 2007-03-29 02:11:46Z julian $");
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/proc.h>
35
36#include <i386/linux/linux.h>
37#include <i386/linux/linux_proto.h>
38#include <compat/linux/linux_util.h>

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

82DUMMY(request_key);
83DUMMY(keyctl);
84DUMMY(ioprio_set);
85DUMMY(ioprio_get);
86DUMMY(inotify_init);
87DUMMY(inotify_add_watch);
88DUMMY(inotify_rm_watch);
89DUMMY(migrate_pages);
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/proc.h>
35
36#include <i386/linux/linux.h>
37#include <i386/linux/linux_proto.h>
38#include <compat/linux/linux_util.h>

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

82DUMMY(request_key);
83DUMMY(keyctl);
84DUMMY(ioprio_set);
85DUMMY(ioprio_get);
86DUMMY(inotify_init);
87DUMMY(inotify_add_watch);
88DUMMY(inotify_rm_watch);
89DUMMY(migrate_pages);
90DUMMY(openat);
91DUMMY(mkdirat);
92DUMMY(mknodat);
93DUMMY(fchownat);
94DUMMY(futimesat);
95DUMMY(fstatat64);
96DUMMY(unlinkat);
97DUMMY(renameat);
98DUMMY(linkat);

--- 28 unchanged lines hidden ---
90DUMMY(mkdirat);
91DUMMY(mknodat);
92DUMMY(fchownat);
93DUMMY(futimesat);
94DUMMY(fstatat64);
95DUMMY(unlinkat);
96DUMMY(renameat);
97DUMMY(linkat);

--- 28 unchanged lines hidden ---