aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/surface
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-05-04 13:15:46 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-05-04 13:15:46 -0700
commitf667f1b3e876c5d59786d40c6d3f6d22be2db5ac (patch)
tree325ac2b39561f46969d9b6ddf50499dfe4883ce3 /src/core/surface
parent925573c17f67bbb1474efcc86fe2a3ea8f519fa7 (diff)
Added missing profiling tags.
Diffstat (limited to 'src/core/surface')
-rw-r--r--src/core/surface/call.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/surface/call.c b/src/core/surface/call.c
index 070be1b25a..fc3e840452 100644
--- a/src/core/surface/call.c
+++ b/src/core/surface/call.c
@@ -686,7 +686,7 @@ static int add_slice_to_message(grpc_call *call, gpr_slice slice) {
static void call_on_done_recv(void *pc, int success) {
grpc_call *call = pc;
size_t i;
- GRPC_TIMER_MARK(CALL_ON_DONE_RECV_BEGIN, 0);
+ GRPC_TIMER_BEGIN(GRPC_PTAG_CALL_ON_DONE_RECV, 0);
lock(call);
call->receiving = 0;
if (success) {
@@ -731,7 +731,7 @@ static void call_on_done_recv(void *pc, int success) {
unlock(call);
GRPC_CALL_INTERNAL_UNREF(call, "receiving", 0);
- GRPC_TIMER_MARK(CALL_ON_DONE_RECV_END, 0);
+ GRPC_TIMER_BEGIN(GRPC_PTAG_CALL_ON_DONE_RECV, 0);
}
static grpc_mdelem_list chain_metadata_from_app(grpc_call *call, size_t count,