diff options
| author | Julian Elischer <julian@FreeBSD.org> | 2003-02-17 09:55:10 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 2003-02-17 09:55:10 +0000 |
| commit | 4a338afd7a9034a944764eee1adb7b6f7668258c (patch) | |
| tree | 775429b184310789a1eb3bc1be8451f6faf1abf4 /sys/kern/subr_smp.c | |
| parent | d1d78df69b939f4e781cdf2b4be97c4a3bd5c468 (diff) | |
Notes
Diffstat (limited to 'sys/kern/subr_smp.c')
| -rw-r--r-- | sys/kern/subr_smp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index 7965b78fdb38..908d5874ab22 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -123,7 +123,7 @@ forward_signal(struct thread *td) int id; /* - * signotify() has already set KEF_ASTPENDING and PS_NEEDSIGCHECK on + * signotify() has already set TDF_ASTPENDING and PS_NEEDSIGCHECK on * this process, so all we need to do is poke it if it is currently * executing so that it executes ast(). */ @@ -169,7 +169,7 @@ forward_roundrobin(void) id = pc->pc_cpumask; if (id != PCPU_GET(cpumask) && (id & stopped_cpus) == 0 && td != pc->pc_idlethread) { - td->td_kse->ke_flags |= KEF_NEEDRESCHED; + td->td_flags |= TDF_NEEDRESCHED; map |= id; } } |
