|
|
@ -223,11 +223,12 @@ grpc_call *grpc_channel_create_call(grpc_channel *channel, |
|
|
|
"grpc_channel_create_call(" |
|
|
|
"grpc_channel_create_call(" |
|
|
|
"channel=%p, parent_call=%p, propagation_mask=%x, cq=%p, method=%s, " |
|
|
|
"channel=%p, parent_call=%p, propagation_mask=%x, cq=%p, method=%s, " |
|
|
|
"host=%s, " |
|
|
|
"host=%s, " |
|
|
|
"deadline=gpr_timespec { tv_sec: %"PRId64", tv_nsec: %d, clock_type: %d }, " |
|
|
|
"deadline=gpr_timespec { tv_sec: %" PRId64 |
|
|
|
|
|
|
|
", tv_nsec: %d, clock_type: %d }, " |
|
|
|
"reserved=%p)", |
|
|
|
"reserved=%p)", |
|
|
|
10, (channel, parent_call, (unsigned)propagation_mask, cq, method, host, |
|
|
|
10, |
|
|
|
deadline.tv_sec, deadline.tv_nsec, |
|
|
|
(channel, parent_call, (unsigned)propagation_mask, cq, method, host, |
|
|
|
(int)deadline.clock_type, reserved)); |
|
|
|
deadline.tv_sec, deadline.tv_nsec, (int)deadline.clock_type, reserved)); |
|
|
|
GPR_ASSERT(!reserved); |
|
|
|
GPR_ASSERT(!reserved); |
|
|
|
return grpc_channel_create_call_internal( |
|
|
|
return grpc_channel_create_call_internal( |
|
|
|
channel, parent_call, propagation_mask, cq, NULL, |
|
|
|
channel, parent_call, propagation_mask, cq, NULL, |
|
|
@ -282,11 +283,12 @@ grpc_call *grpc_channel_create_registered_call( |
|
|
|
"grpc_channel_create_registered_call(" |
|
|
|
"grpc_channel_create_registered_call(" |
|
|
|
"channel=%p, parent_call=%p, propagation_mask=%x, completion_queue=%p, " |
|
|
|
"channel=%p, parent_call=%p, propagation_mask=%x, completion_queue=%p, " |
|
|
|
"registered_call_handle=%p, " |
|
|
|
"registered_call_handle=%p, " |
|
|
|
"deadline=gpr_timespec { tv_sec: %"PRId64", tv_nsec: %d, clock_type: %d }, " |
|
|
|
"deadline=gpr_timespec { tv_sec: %" PRId64 |
|
|
|
|
|
|
|
", tv_nsec: %d, clock_type: %d }, " |
|
|
|
"reserved=%p)", |
|
|
|
"reserved=%p)", |
|
|
|
9, (channel, parent_call, (unsigned)propagation_mask, completion_queue, |
|
|
|
9, (channel, parent_call, (unsigned)propagation_mask, completion_queue, |
|
|
|
registered_call_handle, deadline.tv_sec, |
|
|
|
registered_call_handle, deadline.tv_sec, deadline.tv_nsec, |
|
|
|
deadline.tv_nsec, (int)deadline.clock_type, reserved)); |
|
|
|
(int)deadline.clock_type, reserved)); |
|
|
|
GPR_ASSERT(!reserved); |
|
|
|
GPR_ASSERT(!reserved); |
|
|
|
return grpc_channel_create_call_internal( |
|
|
|
return grpc_channel_create_call_internal( |
|
|
|
channel, parent_call, propagation_mask, completion_queue, NULL, |
|
|
|
channel, parent_call, propagation_mask, completion_queue, NULL, |
|
|
|