diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-16 07:48:01 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-16 07:48:01 +0000 |
commit | 2efed3c952e34202c23fc9e1258758ab54ba77db (patch) | |
tree | f06609bc1c8f8dd5dde6ce4e20fdd3108d127301 /sys/arch/i386 | |
parent | 3e4127afae70c8740065537920249a0566c669a3 (diff) |
Kill DB_*TASK_NAME* macros which were only ever on i386/amd64 and never used.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/include/db_machdep.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/arch/i386/include/db_machdep.h b/sys/arch/i386/include/db_machdep.h index 65d5b12ed0e..06eced95a76 100644 --- a/sys/arch/i386/include/db_machdep.h +++ b/sys/arch/i386/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.21 2011/03/23 16:54:35 pirofti Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.22 2014/03/16 07:48:00 guenther Exp $ */ /* $NetBSD: db_machdep.h,v 1.9 1996/05/03 19:23:59 christos Exp $ */ /* @@ -73,12 +73,6 @@ extern db_regs_t ddb_regs; /* register state */ #define DB_MACHINE_COMMANDS -/* macros for printing OS server dependent task name */ - -#define DB_TASK_NAME(task) db_task_name(task) -#define DB_TASK_NAME_TITLE "COMMAND " -#define DB_TASK_NAME_LEN 23 -#define DB_NULL_TASK_NAME "? " #define DB_ELF_SYMBOLS #define DB_ELFSIZE 32 @@ -91,10 +85,6 @@ typedef long kgdb_reg_t; #define KGDB_ENTER breakpoint() -#if 0 -void db_task_name(/* task_t */); -#endif - /* macro for checking if a thread has used floating-point */ int kdb_trap(int, int, db_regs_t *); |