diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-11-28 18:52:24 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-11-28 18:52:24 +0000 |
commit | d27b3152e3a99ed544f8747c35b9c7a7005e584f (patch) | |
tree | ebd09eec26d1d14c632bdec01235cc440f229e34 /sys/arch/sh/include/proc.h | |
parent | a228d0749b990cc7bc2e8545fac3afabc57de918 (diff) |
Implement PT_STEP.
Diffstat (limited to 'sys/arch/sh/include/proc.h')
-rw-r--r-- | sys/arch/sh/include/proc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sh/include/proc.h b/sys/arch/sh/include/proc.h index a308274bf3e..3ca55e97ad0 100644 --- a/sys/arch/sh/include/proc.h +++ b/sys/arch/sh/include/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.1 2006/10/06 21:02:55 miod Exp $ */ +/* $OpenBSD: proc.h,v 1.2 2006/11/28 18:52:23 kettenis Exp $ */ /* $NetBSD: proc.h,v 1.10 2005/12/11 12:18:58 christos Exp $ */ /* @@ -59,6 +59,7 @@ struct mdproc { /* md_flags */ #define MDP_USEDFPU 0x0001 /* has used the FPU */ +#define MDP_STEP 0x0002 /* single step */ #ifdef _KERNEL #ifndef _LOCORE |