2022-12-25 07:36:00 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
|
|
2022-12-25 11:37:59 -08:00
|
|
|
#include <wpi/Synchronization.h>
|
|
|
|
|
|
2022-12-25 07:36:00 -08:00
|
|
|
#include "cscore_runloop.h"
|
|
|
|
|
|
2022-12-25 11:37:59 -08:00
|
|
|
static wpi::Event& GetInstance() {
|
|
|
|
|
static wpi::Event event;
|
|
|
|
|
return event;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-25 07:36:00 -08:00
|
|
|
namespace cs {
|
2022-12-25 11:37:59 -08:00
|
|
|
void RunMainRunLoop() {
|
|
|
|
|
wpi::Event& event = GetInstance();
|
|
|
|
|
wpi::WaitForObject(event.GetHandle());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int RunMainRunLoopTimeout(double timeoutSeconds) {
|
|
|
|
|
wpi::Event& event = GetInstance();
|
|
|
|
|
bool timedOut = false;
|
|
|
|
|
bool signaled =
|
|
|
|
|
wpi::WaitForObject(event.GetHandle(), timeoutSeconds, &timedOut);
|
|
|
|
|
if (timedOut) {
|
|
|
|
|
return 3;
|
|
|
|
|
}
|
|
|
|
|
if (signaled) {
|
|
|
|
|
return 2;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StopMainRunLoop() {
|
|
|
|
|
wpi::Event& event = GetInstance();
|
|
|
|
|
event.Set();
|
2022-12-25 07:36:00 -08:00
|
|
|
}
|
|
|
|
|
} // namespace cs
|