Skip to content
Snippets Groups Projects
Commit 6b8a8e4a authored by kpayson64's avatar kpayson64 Committed by GitHub
Browse files

Merge pull request #7330 from dgquintas/fix_tsan

Fix tsan race
parents 6ab39eaf ef6b991d
No related branches found
No related tags found
No related merge requests found
...@@ -42,27 +42,24 @@ typedef struct endpoint_ll_node { ...@@ -42,27 +42,24 @@ typedef struct endpoint_ll_node {
static endpoint_ll_node *head = NULL; static endpoint_ll_node *head = NULL;
static gpr_mu g_endpoint_mutex; static gpr_mu g_endpoint_mutex;
static bool g_init_done = false; static gpr_once g_once_init = GPR_ONCE_INIT;
void grpc_initialize_network_status_monitor() { static void destroy_network_status_monitor(void) {
g_init_done = true; if (head != NULL) {
gpr_mu_init(&g_endpoint_mutex); gpr_log(GPR_ERROR,
// TODO(makarandd): Install callback with OS to monitor network status. "Memory leaked as all network endpoints were not shut down");
}
void grpc_destroy_network_status_monitor() {
for (endpoint_ll_node *curr = head; curr != NULL;) {
endpoint_ll_node *next = curr->next;
gpr_free(curr);
curr = next;
} }
gpr_mu_destroy(&g_endpoint_mutex); gpr_mu_destroy(&g_endpoint_mutex);
} }
static void initialize_network_status_monitor(void) {
gpr_mu_init(&g_endpoint_mutex);
atexit(destroy_network_status_monitor);
// TODO(makarandd): Install callback with OS to monitor network status.
}
void grpc_network_status_register_endpoint(grpc_endpoint *ep) { void grpc_network_status_register_endpoint(grpc_endpoint *ep) {
if (!g_init_done) { gpr_once_init(&g_once_init, initialize_network_status_monitor);
grpc_initialize_network_status_monitor();
}
gpr_mu_lock(&g_endpoint_mutex); gpr_mu_lock(&g_endpoint_mutex);
if (head == NULL) { if (head == NULL) {
head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node)); head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
......
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