diff options
author | Damien Zammit <damien@zamaudio.com> | 2024-02-11 07:09:20 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-02-11 11:38:09 +0100 |
commit | 64d6180904ff348ff1f719cf00a09fcf95eceff5 (patch) | |
tree | 67604062b8f681bacabaae3e32fc1b819a10459b /kern | |
parent | 6e6aa171ff6c8a48507c32ce1fcadbd51ba96587 (diff) | |
download | gnumach-64d6180904ff348ff1f719cf00a09fcf95eceff5.tar.gz gnumach-64d6180904ff348ff1f719cf00a09fcf95eceff5.tar.bz2 gnumach-64d6180904ff348ff1f719cf00a09fcf95eceff5.zip |
smp: Fix parenthesis around logic expression value
Message-ID: <20240211070915.1879676-1-damien@zamaudio.com>
Diffstat (limited to 'kern')
-rw-r--r-- | kern/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/thread.c b/kern/thread.c index 38287581..de9d1982 100644 --- a/kern/thread.c +++ b/kern/thread.c @@ -1921,7 +1921,7 @@ Restart: * Reset policy and priorities if needed. */ #if MACH_FIXPRI - if (thread->policy & new_pset->policies == 0) { + if ((thread->policy & new_pset->policies) == 0) { thread->policy = POLICY_TIMESHARE; recompute_pri = TRUE; } |