diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2004-05-20 09:20:43 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2004-05-20 09:20:43 +0000 |
commit | fa548ed2239322fed4b99e17ca368c836285328c (patch) | |
tree | 55aab0ddc31aa2e7f0a93ce13b8a59cf28fccc84 /sys/arch/sparc/include | |
parent | bb1fe1b9b98659e5bb936357bf26eda5391543bf (diff) |
Properly flush instruction cache for ptrace(PT_WRTIE_{DI}, ...) on powerpc
and m68k.
ok drahn@, millert@
Diffstat (limited to 'sys/arch/sparc/include')
-rw-r--r-- | sys/arch/sparc/include/pmap.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/pmap.h b/sys/arch/sparc/include/pmap.h index fcee10185f9..0fbd8b76ef8 100644 --- a/sys/arch/sparc/include/pmap.h +++ b/sys/arch/sparc/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.36 2003/11/14 19:05:36 miod Exp $ */ +/* $OpenBSD: pmap.h,v 1.37 2004/05/20 09:20:41 kettenis Exp $ */ /* $NetBSD: pmap.h,v 1.30 1997/08/04 20:00:47 pk Exp $ */ /* @@ -303,6 +303,8 @@ void pmap_writetext(unsigned char *, int); #define pmap_update(pm) /* nothing */ #define pmap_copy(DP,SP,D,L,S) /* nothing */ +#define pmap_proc_iflush(p,va,len) /* nothing */ + /* SUN4/SUN4C SPECIFIC DECLARATIONS */ #if defined(SUN4) || defined(SUN4C) |