2020-12-26 14:12:05 -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.
|
2019-11-10 20:54:25 -08:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2026-06-06 12:17:14 -07:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2025-11-07 20:00:05 -05:00
|
|
|
namespace wpi::hal {
|
2019-11-10 20:54:25 -08:00
|
|
|
void PauseNotifiers();
|
|
|
|
|
void ResumeNotifiers();
|
|
|
|
|
void WakeupNotifiers();
|
2020-10-15 20:18:15 -07:00
|
|
|
void WaitNotifiers();
|
2020-09-27 13:27:53 -07:00
|
|
|
void WakeupWaitNotifiers();
|
2026-06-06 12:17:14 -07:00
|
|
|
uint64_t GetNotifierAlarmSetCount();
|
2025-11-07 20:00:05 -05:00
|
|
|
} // namespace wpi::hal
|