diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-02-11 20:44:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-02-11 20:44:12 +0000 |
commit | d4df3d8e6e3ca51eac7b535f92a27b45564104f5 (patch) | |
tree | b93d38d5ed4d7d2fa2e6e90e5d80d7c4e8b67ac5 /sys/arch | |
parent | 759b3fa140febfdb14de299f1424aa00e3c602e6 (diff) |
g/c db_thread_fp_used()
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/include/db_machdep.h | 4 | ||||
-rw-r--r-- | sys/arch/i386/include/db_machdep.h | 4 | ||||
-rw-r--r-- | sys/arch/sh/include/db_machdep.h | 5 |
3 files changed, 3 insertions, 10 deletions
diff --git a/sys/arch/amd64/include/db_machdep.h b/sys/arch/amd64/include/db_machdep.h index 57da262af56..0016678b523 100644 --- a/sys/arch/amd64/include/db_machdep.h +++ b/sys/arch/amd64/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.7 2007/10/19 18:11:18 fgsch Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.8 2008/02/11 20:44:09 miod Exp $ */ /* $NetBSD: db_machdep.h,v 1.2 2003/04/29 17:06:04 scw Exp $ */ /* @@ -98,8 +98,6 @@ void db_task_name(/* task_t */); /* macro for checking if a thread has used floating-point */ -#define db_thread_fp_used(thread) ((thread)->pcb->ims.ifps != 0) - int kdb_trap(int, int, db_regs_t *); void db_machine_init(void); diff --git a/sys/arch/i386/include/db_machdep.h b/sys/arch/i386/include/db_machdep.h index 485a924ec22..1318cc3b317 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.18 2007/10/19 18:11:18 fgsch Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.19 2008/02/11 20:44:11 miod Exp $ */ /* $NetBSD: db_machdep.h,v 1.9 1996/05/03 19:23:59 christos Exp $ */ /* @@ -99,8 +99,6 @@ void db_task_name(/* task_t */); /* macro for checking if a thread has used floating-point */ -#define db_thread_fp_used(thread) ((thread)->pcb->ims.ifps != 0) - int kdb_trap(int, int, db_regs_t *); void db_machine_init(void); diff --git a/sys/arch/sh/include/db_machdep.h b/sys/arch/sh/include/db_machdep.h index 8a36bfddda6..c993969352f 100644 --- a/sys/arch/sh/include/db_machdep.h +++ b/sys/arch/sh/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.3 2006/11/02 22:16:22 mickey Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.4 2008/02/11 20:44:11 miod Exp $ */ /* $NetBSD: db_machdep.h,v 1.12 2006/05/10 06:24:03 skrll Exp $ */ /* @@ -60,9 +60,6 @@ extern db_regs_t ddb_regs; /* register state */ #define inst_load(ins) 0 #define inst_store(ins) 0 -/* macro for checking if a thread has used floating-point */ -#define db_thread_fp_used(thread) ((thread)->pcb->ims.ifps != 0) - int kdb_trap(int, int, db_regs_t *); void db_machine_init (void); boolean_t inst_call(int); |