Deleted Added
full compact
linprocfs.c (139743) linprocfs.c (140214)
1/*-
2 * Copyright (c) 2000 Dag-Erling Co�dan Sm�rgrav
3 * Copyright (c) 1999 Pierre Beyssac
4 * Copyright (c) 1993 Jan-Simon Pendry
5 * Copyright (c) 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

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

35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * @(#)procfs_status.c 8.4 (Berkeley) 6/15/94
40 */
41
42#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2000 Dag-Erling Co�dan Sm�rgrav
3 * Copyright (c) 1999 Pierre Beyssac
4 * Copyright (c) 1993 Jan-Simon Pendry
5 * Copyright (c) 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

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

35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * @(#)procfs_status.c 8.4 (Berkeley) 6/15/94
40 */
41
42#include <sys/cdefs.h>
43__FBSDID("$FreeBSD: head/sys/compat/linprocfs/linprocfs.c 139743 2005-01-05 22:34:37Z imp $");
43__FBSDID("$FreeBSD: head/sys/compat/linprocfs/linprocfs.c 140214 2005-01-14 04:44:56Z obrien $");
44
45#include <sys/param.h>
46#include <sys/queue.h>
47#include <sys/blist.h>
48#include <sys/conf.h>
49#include <sys/exec.h>
50#include <sys/filedesc.h>
51#include <sys/jail.h>

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

87#endif /* __alpha__ */
88
89#if defined(__i386__) || defined(__amd64__)
90#include <machine/cputypes.h>
91#include <machine/md_var.h>
92#endif /* __i386__ || __amd64__ */
93
94#include "opt_compat.h"
44
45#include <sys/param.h>
46#include <sys/queue.h>
47#include <sys/blist.h>
48#include <sys/conf.h>
49#include <sys/exec.h>
50#include <sys/filedesc.h>
51#include <sys/jail.h>

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

87#endif /* __alpha__ */
88
89#if defined(__i386__) || defined(__amd64__)
90#include <machine/cputypes.h>
91#include <machine/md_var.h>
92#endif /* __i386__ || __amd64__ */
93
94#include "opt_compat.h"
95#if !COMPAT_LINUX32 /* XXX */
96#include <machine/../linux/linux.h>
97#else
95#ifdef COMPAT_LINUX32 /* XXX */
98#include <machine/../linux32/linux.h>
96#include <machine/../linux32/linux.h>
97#else
98#include <machine/../linux/linux.h>
99#endif
100#include <compat/linux/linux_ioctl.h>
101#include <compat/linux/linux_mib.h>
102#include <compat/linux/linux_util.h>
103#include <fs/pseudofs/pseudofs.h>
104#include <fs/procfs/procfs.h>
105
106/*

--- 985 unchanged lines hidden ---
99#endif
100#include <compat/linux/linux_ioctl.h>
101#include <compat/linux/linux_mib.h>
102#include <compat/linux/linux_util.h>
103#include <fs/pseudofs/pseudofs.h>
104#include <fs/procfs/procfs.h>
105
106/*

--- 985 unchanged lines hidden ---