Deleted Added
full compact
linux_dummy.c (178439) linux_dummy.c (178976)
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 178439 2008-04-23 15:56:33Z rdivacky $");
30__FBSDID("$FreeBSD: head/sys/i386/linux/linux_dummy.c 178976 2008-05-13 20:01:27Z rdivacky $");
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>

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

84DUMMY(ioprio_get);
85DUMMY(inotify_init);
86DUMMY(inotify_add_watch);
87DUMMY(inotify_rm_watch);
88DUMMY(migrate_pages);
89DUMMY(pselect6);
90DUMMY(ppoll);
91DUMMY(unshare);
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>

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

84DUMMY(ioprio_get);
85DUMMY(inotify_init);
86DUMMY(inotify_add_watch);
87DUMMY(inotify_rm_watch);
88DUMMY(migrate_pages);
89DUMMY(pselect6);
90DUMMY(ppoll);
91DUMMY(unshare);
92DUMMY(set_robust_list);
93DUMMY(get_robust_list);
94DUMMY(splice);
95DUMMY(sync_file_range);
96DUMMY(tee);
97DUMMY(vmsplice);
98
99#define DUMMY_XATTR(s) \
100int \
101linux_ ## s ## xattr( \

--- 17 unchanged lines hidden ---
92DUMMY(splice);
93DUMMY(sync_file_range);
94DUMMY(tee);
95DUMMY(vmsplice);
96
97#define DUMMY_XATTR(s) \
98int \
99linux_ ## s ## xattr( \

--- 17 unchanged lines hidden ---