diff options
author | David G. Quintas <dgq@google.com> | 2015-08-19 23:38:04 -0700 |
---|---|---|
committer | David G. Quintas <dgq@google.com> | 2015-08-19 23:38:04 -0700 |
commit | fc5dd155d315f925a638389b812fbfb6ab959a2e (patch) | |
tree | e1881a957dc4a85aa800eea2a1865dae712288f1 | |
parent | 2d7db89c684578e7a9950308493431948ff70484 (diff) | |
parent | 2773d5f2f3e35048ad8e354f2a27bd00de2c5843 (diff) |
Merge pull request #2978 from hongweiwang/remove-unregister-all-plugins
Remove grpc_unregister_all_plugins in grpc.h
-rw-r--r-- | include/grpc/grpc.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/grpc/grpc.h b/include/grpc/grpc.h index 2220e8f039..7869e9272e 100644 --- a/include/grpc/grpc.h +++ b/include/grpc/grpc.h @@ -386,13 +386,6 @@ typedef struct grpc_op { the reverse order they were initialized. */ void grpc_register_plugin(void (*init)(void), void (*destroy)(void)); -/** Frees the memory used by all the plugin information. - - While grpc_init and grpc_shutdown can be called multiple times, the plugins - won't be unregistered and their memory cleaned up unless you call that - function. Using atexit(grpc_unregister_all_plugins) is a valid method. */ -void grpc_unregister_all_plugins(); - /* Propagation bits: this can be bitwise or-ed to form propagation_mask for * grpc_call */ /** Propagate deadline */ |