Skip to content
Snippets Groups Projects
Commit 16125a80 authored by Craig Tiller's avatar Craig Tiller
Browse files

Refs

parent 198036f7
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ struct grpc_combiner {
grpc_combiner *grpc_combiner_create(grpc_workqueue *optional_workqueue) {
grpc_combiner *lock = gpr_malloc(sizeof(*lock));
lock->optional_workqueue = GRPC_WORKQUEUE_REF(optional_workqueue, "combiner");
lock->optional_workqueue = optional_workqueue;
gpr_atm_no_barrier_store(&lock->state, 1);
gpr_mpscq_init(&lock->queue);
lock->take_async_break_before_final_list = false;
......
......@@ -50,7 +50,7 @@
/* grpc_workqueue is forward declared in exec_ctx.h */
//#define GRPC_WORKQUEUE_REFCOUNT_DEBUG
#define GRPC_WORKQUEUE_REFCOUNT_DEBUG
#ifdef GRPC_WORKQUEUE_REFCOUNT_DEBUG
#define GRPC_WORKQUEUE_REF(p, r) \
(grpc_workqueue_ref((p), __FILE__, __LINE__, (r)), (p))
......
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