diff options
| author | cgd <cgd@NetBSD.org> | 1994-05-17 10:30:33 +0000 |
|---|---|---|
| committer | cgd <cgd@NetBSD.org> | 1994-05-17 10:30:33 +0000 |
| commit | 25bfe2fdc8a979ba606b4e7dca7aeb2b4d102ca1 (patch) | |
| tree | b6e2ecdb3ce2a0d4686bd105c658493f3c035ee4 /sys | |
| parent | 0918278c51323bc0f2c7ba584af64292ae647132 (diff) | |
cpu_swapin and need_proftick
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/arch/hp300/include/cpu.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/hp300/include/cpu.h b/sys/arch/hp300/include/cpu.h index 57a4bcca81c..e4fe22441bd 100644 --- a/sys/arch/hp300/include/cpu.h +++ b/sys/arch/hp300/include/cpu.h @@ -37,7 +37,7 @@ * * from: Utah Hdr: cpu.h 1.16 91/03/25 * from: @(#)cpu.h 7.7 (Berkeley) 6/27/91 - * $Id: cpu.h,v 1.6 1994/05/07 06:26:03 mycroft Exp $ + * $Id: cpu.h,v 1.7 1994/05/17 10:30:33 cgd Exp $ */ /* @@ -62,6 +62,7 @@ #define cpu_exec(p) /* nothing */ #define cpu_wait(p) /* nothing */ +#define cpu_swapin(p) /* nothing */ /* * Arguments to hardclock, softclock and gatherstats @@ -91,7 +92,8 @@ struct clockframe { * interrupt. On hp300, request an ast to send us through trap(), * marking the proc as needing a profiling tick. */ -#define profile_tick(p, framep) { (p)->p_flag |= SOWEUPC; aston(); } +#define profile_tick(p, framep) { (p)->p_flag |= P_OWEUPC; aston(); } +#define need_proftick(p) { (p)->p_flag |= P_OWEUPC; aston(); } /* * Notify the current process (p) that it has a signal pending, |
