ThreadPoolMonitorThread.h 238 B

123456789101112131415
  1. #pragma once
  2. #if NET_4_0
  3. enum MonitorStatus
  4. {
  5. MONITOR_STATUS_REQUESTED,
  6. MONITOR_STATUS_WAITING_FOR_REQUEST,
  7. MONITOR_STATUS_NOT_RUNNING,
  8. };
  9. void monitor_ensure_running();
  10. MonitorStatus GetMonitorStatus();
  11. #endif // NET_4_0