diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-13 01:48:22 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-13 01:48:22 +0200 |
commit | a9d931c84eb1887f94b3cb17638584b045f3ad9d (patch) | |
tree | 2667b907df032ea024215ba9e0a690f618f28724 /kern | |
parent | 940639858d782cf0349ce08c865cac7dfeadf4ff (diff) | |
download | gnumach-a9d931c84eb1887f94b3cb17638584b045f3ad9d.tar.gz gnumach-a9d931c84eb1887f94b3cb17638584b045f3ad9d.tar.bz2 gnumach-a9d931c84eb1887f94b3cb17638584b045f3ad9d.zip |
lock: Fix SMP build
Diffstat (limited to 'kern')
-rw-r--r-- | kern/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/debug.c b/kern/debug.c index b608d9ff..eec2f148 100644 --- a/kern/debug.c +++ b/kern/debug.c @@ -41,7 +41,7 @@ #include <device/cons.h> #if NCPUS>1 -simple_lock_data_t Assert_print_lock; /* uninited, we take our chances */ +simple_lock_irq_data_t Assert_print_lock; /* uninited, we take our chances */ #endif static void |