aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc/grpc.h
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2017-03-03 14:27:44 -0800
committerGravatar Sree Kuchibhotla <sreek@google.com>2017-03-03 14:27:44 -0800
commit1dbd981cf8be17db0268e96c2e2a0647b7d53385 (patch)
tree1368cf122ea92f93e1b936f3825c6ae51a724fe0 /include/grpc/grpc.h
parent9f71b177074ceb2607f331241dcceafa03431eaa (diff)
Prefix grpc_cq_polling_type enums with GRPC_CQ_
Diffstat (limited to 'include/grpc/grpc.h')
-rw-r--r--include/grpc/grpc.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/grpc/grpc.h b/include/grpc/grpc.h
index 0e4711fa1f..29fd3048fc 100644
--- a/include/grpc/grpc.h
+++ b/include/grpc/grpc.h
@@ -108,23 +108,23 @@ typedef enum {
I/O progress can only be made when grpc_completion_queue_next() or
grpc_completion_queue_pluck() are called on the completion queue (unless the
- grpc_cq_polling_type is NON_POLLING) and hence it is very important to
- actively call these APIs */
+ grpc_cq_polling_type is GRPC_CQ_NON_POLLING) and hence it is very important
+ to actively call these APIs */
typedef enum {
/** The completion queue will have an associated pollset and there is no
restriction on the type of file descriptors the pollset may contain */
- DEFAULT_POLLING,
+ GRPC_CQ_DEFAULT_POLLING,
- /** Similar to DEFAULT_POLLING except that the completion queues will not
- contain any 'listening file descriptors' (i.e file descriptors used to
+ /** Similar to GRPC_CQ_DEFAULT_POLLING except that the completion queues will
+ not contain any 'listening file descriptors' (i.e file descriptors used to
listen to incoming channels */
- NON_LISTENING,
+ GRPC_CQ_NON_LISTENING,
/** The completion queue will not have an associated pollset. Note that
grpc_completion_queue_next() or grpc_completion_queue_pluck() MUST still
be called to pop events from the completion queue; it is not required to
call them actively to make I/O progress */
- NON_POLLING
+ GRPC_CQ_NON_POLLING
} grpc_cq_polling_type;
/** Create a completion queue */