Skip to content
Snippets Groups Projects
Commit 3b2bc2de authored by Sree Kuchibhotla's avatar Sree Kuchibhotla
Browse files

tsan failures

parent a2b2ac80
No related branches found
No related tags found
No related merge requests found
...@@ -59,12 +59,14 @@ GrpcRpcManager::GrpcRpcManager(int min_pollers, int max_pollers) ...@@ -59,12 +59,14 @@ GrpcRpcManager::GrpcRpcManager(int min_pollers, int max_pollers)
: shutdown_(false), : shutdown_(false),
num_pollers_(0), num_pollers_(0),
min_pollers_(min_pollers), min_pollers_(min_pollers),
max_pollers_(max_pollers == -1 ? INT_MAX: max_pollers), max_pollers_(max_pollers == -1 ? INT_MAX : max_pollers),
num_threads_(0) {} num_threads_(0) {}
GrpcRpcManager::~GrpcRpcManager() { GrpcRpcManager::~GrpcRpcManager() {
std::unique_lock<grpc::mutex> lock(mu_); {
GPR_ASSERT(num_threads_ == 0); std::unique_lock<grpc::mutex> lock(mu_);
GPR_ASSERT(num_threads_ == 0);
}
CleanupCompletedThreads(); CleanupCompletedThreads();
} }
...@@ -87,8 +89,16 @@ bool GrpcRpcManager::IsShutdown() { ...@@ -87,8 +89,16 @@ bool GrpcRpcManager::IsShutdown() {
} }
void GrpcRpcManager::MarkAsCompleted(GrpcRpcManagerThread* thd) { void GrpcRpcManager::MarkAsCompleted(GrpcRpcManagerThread* thd) {
std::unique_lock<grpc::mutex> lock(list_mu_); {
completed_threads_.push_back(thd); std::unique_lock<grpc::mutex> list_lock(list_mu_);
completed_threads_.push_back(thd);
}
grpc::unique_lock<grpc::mutex> lock(mu_);
num_threads_--;
if (num_threads_ == 0) {
shutdown_cv_.notify_one();
}
} }
void GrpcRpcManager::CleanupCompletedThreads() { void GrpcRpcManager::CleanupCompletedThreads() {
...@@ -169,17 +179,10 @@ void GrpcRpcManager::MainWorkLoop() { ...@@ -169,17 +179,10 @@ void GrpcRpcManager::MainWorkLoop() {
} }
} while (MaybeContinueAsPoller()); } while (MaybeContinueAsPoller());
// If we are here, either GrpcRpcManager is shutting down or it already has
// enough threads. In both cases, current thread can be terminated
{
grpc::unique_lock<grpc::mutex> lock(mu_);
num_threads_--;
if (num_threads_ == 0) {
shutdown_cv_.notify_one();
}
}
CleanupCompletedThreads(); CleanupCompletedThreads();
// If we are here, either GrpcRpcManager is shutting down or it already has
// enough threads.
} }
} // namespace grpc } // namespace grpc
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment