Deleted Added
full compact
cpu_machdep.c (5037) cpu_machdep.c (5413)
1/*-
2 * Copyright (c) 1992 Terrence R. Lambert.
3 * Copyright (c) 1982, 1987, 1990 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * William Jolitz.
8 *

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

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
1/*-
2 * Copyright (c) 1992 Terrence R. Lambert.
3 * Copyright (c) 1982, 1987, 1990 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * William Jolitz.
8 *

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

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
38 * $Id: machdep.c,v 1.97 1994/12/11 03:11:23 davidg Exp $
38 * $Id: machdep.c,v 1.98 1994/12/11 03:33:58 davidg Exp $
39 */
40
41#include "npx.h"
42#include "isa.h"
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/signalvar.h>

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

212 DONET(nsintr, NETISR_NS);
213#endif
214#ifdef ISO
215 DONET(clnlintr, NETISR_ISO);
216#endif
217#ifdef CCITT
218 DONET(ccittintr, NETISR_CCITT);
219#endif
39 */
40
41#include "npx.h"
42#include "isa.h"
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/signalvar.h>

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

212 DONET(nsintr, NETISR_NS);
213#endif
214#ifdef ISO
215 DONET(clnlintr, NETISR_ISO);
216#endif
217#ifdef CCITT
218 DONET(ccittintr, NETISR_CCITT);
219#endif
220#ifdef ISDN
221 DONET(isdnintr, NETISR_ISDN);
222#endif
220#undef DONET
221
222 /*
223 * Allocate space for system data structures.
224 * The first available kernel virtual address is in "v".
225 * As pages of kernel virtual memory are allocated, "v" is incremented.
226 * As pages of memory are allocated and cleared,
227 * "firstaddr" is incremented.

--- 1415 unchanged lines hidden ---
223#undef DONET
224
225 /*
226 * Allocate space for system data structures.
227 * The first available kernel virtual address is in "v".
228 * As pages of kernel virtual memory are allocated, "v" is incremented.
229 * As pages of memory are allocated and cleared,
230 * "firstaddr" is incremented.

--- 1415 unchanged lines hidden ---