diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-28 21:27:36 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-28 21:27:36 +0200 |
commit | ecc99f77810305304893d188d25e598f5645ecaf (patch) | |
tree | ccf5769f7bc8394140dd177ac00bcb65bbe6ee64 /xen | |
parent | 87cf68424591ec4576ecfc5833b2babf2d674459 (diff) | |
download | gnumach-ecc99f77810305304893d188d25e598f5645ecaf.tar.gz gnumach-ecc99f77810305304893d188d25e598f5645ecaf.tar.bz2 gnumach-ecc99f77810305304893d188d25e598f5645ecaf.zip |
Fix crash at boot
spl cannot be called before the clock is set up.
Diffstat (limited to 'xen')
-rw-r--r-- | xen/evt.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -29,6 +29,7 @@ int int_mask[NSPL]; spl_t curr_ipl[NCPUS]; +int spl_init = 0; interrupt_handler_fn ivect[NEVNT]; int intpri[NEVNT]; |