linux_sysvec.c (d034d459daf039d21ff432e30dfb48c27ac4d09d) linux_sysvec.c (158eb2773f29ce75f3bc37b38ccfcb305f1d6601)
1/*-
2 * Copyright (c) 1994-1996 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

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

55#include <machine/cpu.h>
56
57#include <i386/linux/linux.h>
58#include <i386/linux/linux_proto.h>
59#include <compat/linux/linux_signal.h>
60#include <compat/linux/linux_util.h>
61
62MODULE_VERSION(linux, 1);
1/*-
2 * Copyright (c) 1994-1996 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

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

55#include <machine/cpu.h>
56
57#include <i386/linux/linux.h>
58#include <i386/linux/linux_proto.h>
59#include <compat/linux/linux_signal.h>
60#include <compat/linux/linux_util.h>
61
62MODULE_VERSION(linux, 1);
63MODULE_DEPEND(linux, sysvmsg, 1, 1, 1);
64MODULE_DEPEND(linux, sysvsem, 1, 1, 1);
65MODULE_DEPEND(linux, sysvshm, 1, 1, 1);
63
64MALLOC_DEFINE(M_LINUX, "linux", "Linux mode structures");
65
66#if BYTE_ORDER == LITTLE_ENDIAN
67#define SHELLMAGIC 0x2123 /* #! */
68#else
69#define SHELLMAGIC 0x2321
70#endif

--- 761 unchanged lines hidden ---
66
67MALLOC_DEFINE(M_LINUX, "linux", "Linux mode structures");
68
69#if BYTE_ORDER == LITTLE_ENDIAN
70#define SHELLMAGIC 0x2123 /* #! */
71#else
72#define SHELLMAGIC 0x2321
73#endif

--- 761 unchanged lines hidden ---