diff options
author | dg <dg@FreeBSD.org> | 1993-07-27 10:52:31 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1993-07-27 10:52:31 +0000 |
commit | ed0c2480407bece983d693e1753de8d830a5f5ba (patch) | |
tree | f74d745c1c162578afcb421239425fdd31e58e8a /sys/ddb | |
parent | 17f98e8cfc1b74c9d12ce4853fc1d7635a20dfb1 (diff) | |
download | FreeBSD-src-ed0c2480407bece983d693e1753de8d830a5f5ba.zip FreeBSD-src-ed0c2480407bece983d693e1753de8d830a5f5ba.tar.gz |
* Applied fixes from Bruce Evans to fix COW bugs, >1MB kernel loading,
profiling, and various protection checks that cause security holes
and system crashes.
* Changed min/max/bcmp/ffs/strlen to be static inline functions
- included from cpufunc.h in via systm.h. This change
improves performance in many parts of the kernel - up to 5% in the
networking layer alone. Note that this requires systm.h to be included
in any file that uses these functions otherwise it won't be able to
find them during the load.
* Fixed incorrect call to splx() in if_is.c
* Fixed bogus variable assignment to splx() in if_ed.c
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_output.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/ddb/db_output.c b/sys/ddb/db_output.c index fc8fca7..82c7ce3 100644 --- a/sys/ddb/db_output.c +++ b/sys/ddb/db_output.c @@ -34,6 +34,9 @@ /* * HISTORY * $Log: db_output.c,v $ + * Revision 1.1.1.1 1993/06/12 14:57:37 rgrimes + * Initial import, 0.1 + pk 0.2.4-B1 + * * Revision 1.1 1992/03/25 21:45:18 pace * Initial revision * @@ -60,6 +63,7 @@ */ #include "param.h" +#include "systm.h" #include <machine/stdarg.h> /* |