diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-13 01:00:37 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-13 01:00:37 +0200 |
commit | 940639858d782cf0349ce08c865cac7dfeadf4ff (patch) | |
tree | 23bca642eb01a37c4acd5c438a3ac6962af0707a /x86_64/locore.S | |
parent | d6ca407ed23159d161309740c5bf342d13edcc43 (diff) | |
download | gnumach-940639858d782cf0349ce08c865cac7dfeadf4ff.tar.gz gnumach-940639858d782cf0349ce08c865cac7dfeadf4ff.tar.bz2 gnumach-940639858d782cf0349ce08c865cac7dfeadf4ff.zip |
IPI: Do not include support when NCPUS=1
Diffstat (limited to 'x86_64/locore.S')
-rw-r--r-- | x86_64/locore.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/x86_64/locore.S b/x86_64/locore.S index def73d89..a330d56b 100644 --- a/x86_64/locore.S +++ b/x86_64/locore.S @@ -769,8 +769,10 @@ INTERRUPT(21) INTERRUPT(22) INTERRUPT(23) #endif +#if NCPUS > 1 INTERRUPT(CALL_AST_CHECK) INTERRUPT(CALL_PMAP_UPDATE) +#endif #ifdef APIC /* Spurious interrupt, set irq number to vect number */ INTERRUPT(255) |