| 112 | } |
| 113 | |
| 114 | int register_pool(IdentityPoolBase* entry) { |
| 115 | photon::scoped_lock lock(mutex); |
| 116 | entries.push_back(entry); |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | int unregister_pool(IdentityPoolBase* entry) { |
| 121 | photon::scoped_lock lock(mutex); |
no test coverage detected