diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-11-27 14:54:17 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-11-27 14:54:17 +0000 |
commit | a0b6e52aa68ece17f3848df37e1f02a255906069 (patch) | |
tree | 729c50be62aa592a43abf54dd5d5c749fdf4a317 | |
parent | a759ef520ad2914d985be4153c4c232defa87496 (diff) |
Add PT_STEP.
-rw-r--r-- | sys/arch/sh/include/ptrace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sh/include/ptrace.h b/sys/arch/sh/include/ptrace.h index 3c25fb88b73..9b9cbdd4cbe 100644 --- a/sys/arch/sh/include/ptrace.h +++ b/sys/arch/sh/include/ptrace.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ptrace.h,v 1.1 2006/10/06 21:02:55 miod Exp $ */ +/* $OpenBSD: ptrace.h,v 1.2 2006/11/27 14:54:16 kettenis Exp $ */ /* $NetBSD: ptrace.h,v 1.3 2002/02/28 01:58:53 uch Exp $ */ /* @@ -35,6 +35,6 @@ * SuperH ptrace definitions */ +#define PT_STEP (PT_FIRSTMACH + 0) #define PT_GETREGS (PT_FIRSTMACH + 1) #define PT_SETREGS (PT_FIRSTMACH + 2) - |