Deleted Added
full compact
db_interface.c (879) db_interface.c (1246)
1/*
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the

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

18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 *
1/*
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the

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

18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 *
26 * $Id: db_interface.c,v 1.4 1993/11/25 01:30:52 wollman Exp $
26 * $Id: db_interface.c,v 1.5 1993/12/19 00:50:00 wollman Exp $
27 */
28
29/*
30 * Interface to new debugger.
31 */
32#include "param.h"
33#include "systm.h"
34#include "kernel.h"

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

173
174 src = (char *)addr;
175 while (--size >= 0)
176 *data++ = *src++;
177
178 db_nofault = 0;
179}
180
27 */
28
29/*
30 * Interface to new debugger.
31 */
32#include "param.h"
33#include "systm.h"
34#include "kernel.h"

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

173
174 src = (char *)addr;
175 while (--size >= 0)
176 *data++ = *src++;
177
178 db_nofault = 0;
179}
180
181struct pte *pmap_pte(pmap_t, vm_offset_t);
182
183/*
184 * Write bytes to kernel address space for debugger.
185 */
186void
187db_write_bytes(addr, size, data)
188 vm_offset_t addr;
189 register int size;
190 register char *data;

--- 52 unchanged lines hidden ---
181/*
182 * Write bytes to kernel address space for debugger.
183 */
184void
185db_write_bytes(addr, size, data)
186 vm_offset_t addr;
187 register int size;
188 register char *data;

--- 52 unchanged lines hidden ---