diff options
author | jeff <jeff@FreeBSD.org> | 2003-10-31 11:02:16 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2003-10-31 11:02:16 +0000 |
commit | b3642312228b79855c006513d0d8dd934eb866cc (patch) | |
tree | abc1e191a43cb8600baa9232b8037aeadfd7a5fd /sys | |
parent | 1ace50578bbafd1583677cd06569e31a4d096cc6 (diff) | |
download | FreeBSD-src-b3642312228b79855c006513d0d8dd934eb866cc.zip FreeBSD-src-b3642312228b79855c006513d0d8dd934eb866cc.tar.gz |
- Add 4 kse flags for use in the schedulers.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/proc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index dbea7e9..0930460 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -447,6 +447,10 @@ struct kse { }; /* flags kept in ke_flags */ +#define KEF_SCHED0 0x00001 /* For scheduler specific use. */ +#define KEF_SCHED1 0x00002 /* For scheduler specific use. */ +#define KEF_SCHED2 0X00004 /* For scheduler specific use. */ +#define KEF_SCHED3 0x00008 /* For scheduler specific use. */ #define KEF_DIDRUN 0x02000 /* KSE actually ran. */ #define KEF_EXIT 0x04000 /* KSE is being killed. */ |