diff options
author | David Garcia Quintas <dgq@google.com> | 2015-05-04 13:15:46 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-05-04 13:15:46 -0700 |
commit | f667f1b3e876c5d59786d40c6d3f6d22be2db5ac (patch) | |
tree | 325ac2b39561f46969d9b6ddf50499dfe4883ce3 /src/core/transport/chttp2_transport.c | |
parent | 925573c17f67bbb1474efcc86fe2a3ea8f519fa7 (diff) |
Added missing profiling tags.
Diffstat (limited to 'src/core/transport/chttp2_transport.c')
-rw-r--r-- | src/core/transport/chttp2_transport.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/transport/chttp2_transport.c b/src/core/transport/chttp2_transport.c index 46bed36ac4..86e18f853e 100644 --- a/src/core/transport/chttp2_transport.c +++ b/src/core/transport/chttp2_transport.c @@ -799,7 +799,7 @@ static void unlock(transport *t) { grpc_stream_op_buffer nuke_now; const grpc_transport_callbacks *cb = t->cb; - GRPC_TIMER_MARK(HTTP2_UNLOCK_BEGIN, 0); + GRPC_TIMER_BEGIN(GRPC_PTAG_HTTP2_UNLOCK, 0); grpc_sopb_init(&nuke_now); if (t->nuke_later_sopb.nops) { @@ -849,7 +849,7 @@ static void unlock(transport *t) { /* finally unlock */ gpr_mu_unlock(&t->mu); - GRPC_TIMER_MARK(HTTP2_UNLOCK_CLEANUP, 0); + GRPC_TIMER_MARK(GRPC_PTAG_HTTP2_UNLOCK_CLEANUP, 0); /* perform some callbacks if necessary */ for (i = 0; i < num_goaways; i++) { @@ -882,7 +882,7 @@ static void unlock(transport *t) { gpr_free(goaways); - GRPC_TIMER_MARK(HTTP2_UNLOCK_END, 0); + GRPC_TIMER_END(GRPC_PTAG_HTTP2_UNLOCK, 0); } /* |