No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ThreadPoolMonitorThread.h 206B

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();