ThreadPoolMonitorThread.h 206 B

1234567891011
  1. #pragma once
  2. enum MonitorStatus
  3. {
  4. MONITOR_STATUS_REQUESTED,
  5. MONITOR_STATUS_WAITING_FOR_REQUEST,
  6. MONITOR_STATUS_NOT_RUNNING,
  7. };
  8. void monitor_ensure_running();
  9. MonitorStatus GetMonitorStatus();