| 34 | } |
| 35 | |
| 36 | AgentMonitorComm::~AgentMonitorComm() { |
| 37 | pthread_cond_destroy(&cond_); |
| 38 | pthread_mutex_destroy(&mutex_); |
| 39 | pthread_rwlock_destroy(&rwmutex_); |
| 40 | } |
| 41 | |
| 42 | AgentMonitorComm *AgentMonitorComm::GetGlobalAgentMonitorComm() { |
| 43 | static AgentMonitorComm agentmonitorcomm; |
nothing calls this directly
no outgoing calls
no test coverage detected