aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc/grpc.h
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-03-01 23:15:47 -0800
committerGravatar ncteisen <ncteisen@gmail.com>2018-03-02 11:38:32 -0800
commitee013d25b3237b62185d1248e4ccc873a0d6be3e (patch)
treec7b101b055c3d32d168885b0aa736a554afb4c45 /include/grpc/grpc.h
parentbf5237a723501c3a0c6324f7d8662b2759bfb816 (diff)
Fix build and sanity
Diffstat (limited to 'include/grpc/grpc.h')
-rw-r--r--include/grpc/grpc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/grpc/grpc.h b/include/grpc/grpc.h
index 2ad247abb1..e3b60a93a2 100644
--- a/include/grpc/grpc.h
+++ b/include/grpc/grpc.h
@@ -286,12 +286,12 @@ GRPCAPI grpc_channel* grpc_lame_client_channel_create(
/** Close and destroy a grpc channel */
GRPCAPI void grpc_channel_destroy(grpc_channel* channel);
-// Returns the JSON formatted channel trace for this channel. If recursive
-// is true, it will render all of the trace for this channel's subchannels.
-GRPCAPI char* grpc_channel_get_trace(grpc_channel* channel, bool recursive);
+/** Returns the JSON formatted channel trace for this channel. If recursive
+ is non 0, it will render all of the trace for this channel's subchannels. */
+GRPCAPI char* grpc_channel_get_trace(grpc_channel* channel, int recursive);
-// Returns the channel uuid, which can be used to look up its trace at a
-// later time.
+/** Returns the channel uuid, which can be used to look up its trace at a
+ later time. */
GRPCAPI intptr_t grpc_channel_get_uuid(grpc_channel* channel);
/** Error handling for grpc_call