Skip to content
Snippets Groups Projects
Commit d2a82d9d authored by Vijay Pai's avatar Vijay Pai
Browse files

Added comments to describe nesting of mutexes

parent 8931cdd2
No related branches found
No related tags found
No related merge requests found
...@@ -141,8 +141,15 @@ struct grpc_server { ...@@ -141,8 +141,15 @@ struct grpc_server {
grpc_pollset **pollsets; grpc_pollset **pollsets;
size_t cq_count; size_t cq_count;
gpr_mu mu_global; /* The two following mutexes control access to server-state
gpr_mu mu_call; mu_global controls access to non-call-related state (e.g., channel state)
mu_call controls access to call-related state (e.g., the call lists)
If they are ever required to be nested, you must lock mu_global
before mu_call. This is currently used in shutdown processing
(grpc_server_shutdown_and_notify and maybe_finish_shutdown) */
gpr_mu mu_global; /* mutex for server and channel state */
gpr_mu mu_call; /* mutex for call-specific state */
registered_method *registered_methods; registered_method *registered_methods;
requested_call_array requested_calls; requested_call_array requested_calls;
......
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