diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-01-23 19:16:40 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-01-23 19:16:40 +0000 |
commit | 6d54d03573c96c5e760fb506855c9a967178e0b6 (patch) | |
tree | cf292383d3cb5da7ec472b2d5829fdc73264bb96 /sys/arch/sparc64/include/cpu.h | |
parent | 9a5851d4b30aae599e77ec4538fc8efb635b77cf (diff) |
Make write_user_windows() do what the name suggests: flush user windows instead
of all windows.
Diffstat (limited to 'sys/arch/sparc64/include/cpu.h')
-rw-r--r-- | sys/arch/sparc64/include/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/include/cpu.h b/sys/arch/sparc64/include/cpu.h index 3db5b3d1506..2bffa5dfa14 100644 --- a/sys/arch/sparc64/include/cpu.h +++ b/sys/arch/sparc64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.70 2008/11/22 18:12:32 art Exp $ */ +/* $OpenBSD: cpu.h,v 1.71 2009/01/23 19:16:39 kettenis Exp $ */ /* $NetBSD: cpu.h,v 1.28 2001/06/14 22:56:58 thorpej Exp $ */ /* @@ -265,7 +265,7 @@ void loadfpstate(struct fpstate64 *); void clearfpstate(void); u_int64_t probeget(paddr_t, int, int); #define write_all_windows() __asm __volatile("flushw" : : ) -#define write_user_windows() __asm __volatile("flushw" : : ) +void write_user_windows(void); void proc_trampoline(void); struct pcb; void snapshot(struct pcb *); |