diff options
| author | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2026-08-04 19:39:54 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-04 19:39:54 +0300 |
| commit | cef8c85e2c70adbc42d9c2e4894633ad657f355d (patch) | |
| tree | 368109d7bc244534dcebd5c6c1b0c79952dafc92 /indra/llcommon/llwatchdog.cpp | |
| parent | a8b866c34850469463313afbf4411339bb3c8749 (diff) | |
p#682 Improve logging for system events and session (#6086)
Diffstat (limited to 'indra/llcommon/llwatchdog.cpp')
| -rw-r--r-- | indra/llcommon/llwatchdog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llcommon/llwatchdog.cpp b/indra/llcommon/llwatchdog.cpp index 66b565c763..886f19366c 100644 --- a/indra/llcommon/llwatchdog.cpp +++ b/indra/llcommon/llwatchdog.cpp @@ -116,6 +116,11 @@ bool LLWatchdogTimeout::isAlive() const return (mTimer.getStarted() && !mTimer.hasExpired()); } +bool LLWatchdogTimeout::started() const +{ + return mTimer.getStarted(); +} + void LLWatchdogTimeout::reset() { mTimer.setTimerExpirySec(mTimeout); |
