ios-unity/Libraries/libil2cpp/include/mono/ThreadPool/ThreadPoolMonitorThread.h
2022-07-11 13:33:51 +08:00

16 lines
238 B
C

#pragma once
#if NET_4_0
enum MonitorStatus
{
MONITOR_STATUS_REQUESTED,
MONITOR_STATUS_WAITING_FOR_REQUEST,
MONITOR_STATUS_NOT_RUNNING,
};
void monitor_ensure_running();
MonitorStatus GetMonitorStatus();
#endif // NET_4_0