LeviLamina
Loading...
Searching...
No Matches
WatchdogSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<4, 4, int> mHangThresholdMs;
12 ::ll::TypedStorage<4, 8, ::std::optional<int>> mSpikeThresholdMs;
13 ::ll::TypedStorage<4, 8, ::std::optional<int>> mSlowThresholdMs;
14 ::ll::TypedStorage<1, 1, bool> mHangException;
15 ::ll::TypedStorage<1, 1, bool> mEnableExceptionHandling;
16 ::ll::TypedStorage<1, 1, bool> mEnableShutdown;
17 ::ll::TypedStorage<4, 4, int> mMemoryWarningMB;
18 ::ll::TypedStorage<4, 4, int> mMemoryLimitMB;
19 // NOLINTEND
20};
21
22} // namespace Scripting
Definition WatchdogSettings.h:7