Deleted Added
full compact
linux_dummy.c (232799) linux_dummy.c (234352)
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 232799 2012-03-10 23:10:18Z netchild $");
30__FBSDID("$FreeBSD: head/sys/i386/linux/linux_dummy.c 234352 2012-04-16 21:22:02Z jkim $");
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>

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

108/* linux 2.6.25: */
109DUMMY(timerfd_settime);
110DUMMY(timerfd_gettime);
111/* linux 2.6.27: */
112DUMMY(signalfd4);
113DUMMY(eventfd2);
114DUMMY(epoll_create1);
115DUMMY(dup3);
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>

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

108/* linux 2.6.25: */
109DUMMY(timerfd_settime);
110DUMMY(timerfd_gettime);
111/* linux 2.6.27: */
112DUMMY(signalfd4);
113DUMMY(eventfd2);
114DUMMY(epoll_create1);
115DUMMY(dup3);
116DUMMY(pipe2);
117DUMMY(inotify_init1);
118/* linux 2.6.30: */
119DUMMY(preadv);
120DUMMY(pwritev);
121/* linux 2.6.31 */
122DUMMY(rt_tsigqueueinfo);
123DUMMY(perf_event_open);
124/* linux 2.6.33: */

--- 35 unchanged lines hidden ---
116DUMMY(inotify_init1);
117/* linux 2.6.30: */
118DUMMY(preadv);
119DUMMY(pwritev);
120/* linux 2.6.31 */
121DUMMY(rt_tsigqueueinfo);
122DUMMY(perf_event_open);
123/* linux 2.6.33: */

--- 35 unchanged lines hidden ---