Deleted Added
full compact
db_output.c (430) db_output.c (623)
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 * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
27 * -------------------- ----- ----------------------
28 * CURRENT PATCH LEVEL: 4 00083
29 * -------------------- ----- ----------------------
30 *
31 * 14 Mar 93 Chris G. Demetriou Fixed so that tab is not output,
32 * use spaces instead.
26 * $Id$
33 */
27 */
28
34/*
29/*
35 * HISTORY
36 * $Log: db_output.c,v $
37 * Revision 1.2 1993/07/27 10:52:00 davidg
38 * * Applied fixes from Bruce Evans to fix COW bugs, >1MB kernel loading,
39 * profiling, and various protection checks that cause security holes
40 * and system crashes.
41 * * Changed min/max/bcmp/ffs/strlen to be static inline functions
42 * - included from cpufunc.h in via systm.h. This change
43 * improves performance in many parts of the kernel - up to 5% in the
44 * networking layer alone. Note that this requires systm.h to be included
45 * in any file that uses these functions otherwise it won't be able to
46 * find them during the load.
47 * * Fixed incorrect call to splx() in if_is.c
48 * * Fixed bogus variable assignment to splx() in if_ed.c
49 *
50 * Revision 1.1.1.1 1993/06/12 14:57:37 rgrimes
51 * Initial import, 0.1 + pk 0.2.4-B1
52 *
53 * Revision 1.1 1992/03/25 21:45:18 pace
54 * Initial revision
55 *
56 * Revision 2.3 91/02/05 17:06:45 mrt
57 * Changed to new Mach copyright
58 * [91/01/31 16:18:41 mrt]
59 *
60 * Revision 2.2 90/08/27 21:51:25 dbg
61 * Put extra features of db_doprnt in _doprnt.
62 * [90/08/20 dbg]
63 * Reduce lint.
64 * [90/08/07 dbg]
65 * Created.
66 * [90/07/25 dbg]
67 *
68 */
69/*
70 * Author: David B. Golub, Carnegie Mellon University
71 * Date: 7/90
72 */
73
74/*
75 * Printf and character output for debugger.
76 */
77

--- 329 unchanged lines hidden ---
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33
34/*
35 * Printf and character output for debugger.
36 */
37

--- 329 unchanged lines hidden ---