Skip to content
Snippets Groups Projects
Commit d50bf4d9 authored by Nathaniel Manista's avatar Nathaniel Manista
Browse files

Merge pull request #563 from ctiller/dox4

Expand init/destroy documentation
parents 73269017 a0e34a0b
No related branches found
No related tags found
No related merge requests found
......@@ -354,10 +354,18 @@ typedef struct grpc_op {
} data;
} grpc_op;
/* Initialize the grpc library */
/* Initialize the grpc library.
It is not safe to call any other grpc functions before calling this.
(To avoid overhead, little checking is done, and some things may work. We
do not warrant that they will continue to do so in future revisions of this
library). */
void grpc_init(void);
/* Shut down the grpc library */
/* Shut down the grpc library.
No memory is used by grpc after this call returns, nor are any instructions
executing within the grpc library.
Prior to calling, all application owned grpc objects must have been
destroyed. */
void grpc_shutdown(void);
grpc_completion_queue *grpc_completion_queue_create(void);
......
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