kern: bugfix, turn on auditing for the time being

This commit is contained in:
Michael Scire 2020-02-07 19:48:07 -08:00
parent 1224ed8abe
commit e330b6187f
2 changed files with 3 additions and 1 deletions

View file

@ -15,6 +15,8 @@
*/ */
#pragma once #pragma once
#define MESOSPHERE_BUILD_FOR_AUDITING
/* All kernel code should have access to libvapours. */ /* All kernel code should have access to libvapours. */
#include <vapours.hpp> #include <vapours.hpp>

View file

@ -375,7 +375,7 @@ namespace ams::kern {
} }
/* Get the next suggestion. */ /* Get the next suggestion. */
suggested = priority_queue.GetScheduledNext(core_id, suggested); suggested = priority_queue.GetSuggestedNext(core_id, suggested);
} }
} }
} }