This allows clients to check whether TimeManagement is available before trying to ask it about time related things.
@@ -27,6 +27,11 @@ namespace Kernel {
static Singleton<TimeManagement> s_the;
+bool TimeManagement::is_initialized()
+{
+ return s_the.is_initialized();
+}
+
TimeManagement& TimeManagement::the()
{
return *s_the;
@@ -34,6 +34,7 @@ class TimeManagement {
public:
TimeManagement();
static void initialize(u32 cpu);
+ static bool is_initialized();
static TimeManagement& the();
static bool is_valid_clock_id(clockid_t);