diff options
author | marcel <marcel@FreeBSD.org> | 2004-07-10 21:49:15 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2004-07-10 21:49:15 +0000 |
commit | e32da73c34c88038e4691a1f448f73bd10a34cf1 (patch) | |
tree | ce98752e01e8cb9e0eb268111b2940ae03b47e62 | |
parent | c20ced5cd2addb28ba6e7b3edfc3b473021124fa (diff) | |
download | FreeBSD-src-e32da73c34c88038e4691a1f448f73bd10a34cf1.zip FreeBSD-src-e32da73c34c88038e4691a1f448f73bd10a34cf1.tar.gz |
Update for the KDB framework:
o Remove prototype of Debugger().
o Remove prototype of backtrace().
-rw-r--r-- | sys/sys/systm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h index a1f67bb..77603ad 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -122,7 +122,6 @@ struct _jmp_buf; int setjmp(struct _jmp_buf *); void longjmp(struct _jmp_buf *, int) __dead2; -void Debugger(const char *msg) __nonnull(1); int dumpstatus(vm_offset_t addr, off_t count); int nullop(void); int eopnotsupp(void); @@ -137,7 +136,6 @@ void panic(const char *, ...) __printflike(1, 2); void panic(const char *, ...) __dead2 __printflike(1, 2); #endif -void backtrace(void); void cpu_boot(int); void cpu_rootconf(void); extern uint32_t crc32_tab[]; |