| 211 | } |
| 212 | |
| 213 | void __attribute__((destructor)) term(void) |
| 214 | { |
| 215 | if (Global::is_inited) { |
| 216 | if (!Global::is_fork) { |
| 217 | sendMessage(MSGB_QUIT); |
| 218 | closeSocket(); |
| 219 | } |
| 220 | LOG(LL_DEBUG, LCF_SOCKET, "Exiting."); |
| 221 | ThreadManager::deallocateThreads(); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | } |
nothing calls this directly
no test coverage detected