diff options
author | julian <julian@FreeBSD.org> | 2010-04-14 23:06:07 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2010-04-14 23:06:07 +0000 |
commit | e5e811b1e993cd1b6f7f86b9431fb2fee8cbe8bc (patch) | |
tree | f588b70bdefc57599e36aed4eb8146919ba0eb5b /sys/ddb | |
parent | e2bd1cbb0ddd392b6fbcde0f81b44b59d52cece7 (diff) | |
download | FreeBSD-src-e5e811b1e993cd1b6f7f86b9431fb2fee8cbe8bc.zip FreeBSD-src-e5e811b1e993cd1b6f7f86b9431fb2fee8cbe8bc.tar.gz |
Move two copies of the same definition to a common include file.
MFC after: 3 weeks
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_sym.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c index 99209a8..04af1eb 100644 --- a/sys/ddb/db_sym.c +++ b/sys/ddb/db_sym.c @@ -64,12 +64,6 @@ static boolean_t db_line_at_pc(c_db_sym_t, char **, int *, db_expr_t); static int db_cpu = -1; #ifdef VIMAGE -extern uintptr_t *__start_set_vnet; -extern uintptr_t *__stop_set_vnet; - -#define VNET_START (uintptr_t)&__start_set_vnet -#define VNET_STOP (uintptr_t)&__stop_set_vnet - static void *db_vnet = NULL; #endif |