Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
60b282e6
Commit
60b282e6
authored
Apr 25, 2017
by
Sree Kuchibhotla
Browse files
Options
Downloads
Patches
Plain Diff
Fix compilation issue (when GRPC_CQ_REF_COUNT_DEBUG is defined)
parent
ff7a5876
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/lib/surface/completion_queue.c
+1
-1
1 addition, 1 deletion
src/core/lib/surface/completion_queue.c
with
1 addition
and
1 deletion
src/core/lib/surface/completion_queue.c
+
1
−
1
View file @
60b282e6
...
@@ -30,7 +30,6 @@
...
@@ -30,7 +30,6 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
*/
*/
#include
"src/core/lib/surface/completion_queue.h"
#include
"src/core/lib/surface/completion_queue.h"
#include
<stdio.h>
#include
<stdio.h>
...
@@ -414,6 +413,7 @@ grpc_cq_completion_type grpc_get_cq_completion_type(grpc_completion_queue *cc) {
...
@@ -414,6 +413,7 @@ grpc_cq_completion_type grpc_get_cq_completion_type(grpc_completion_queue *cc) {
#ifdef GRPC_CQ_REF_COUNT_DEBUG
#ifdef GRPC_CQ_REF_COUNT_DEBUG
void
grpc_cq_internal_ref
(
grpc_completion_queue
*
cc
,
const
char
*
reason
,
void
grpc_cq_internal_ref
(
grpc_completion_queue
*
cc
,
const
char
*
reason
,
const
char
*
file
,
int
line
)
{
const
char
*
file
,
int
line
)
{
cq_data
*
cqd
=
&
cc
->
data
;
gpr_log
(
file
,
line
,
GPR_LOG_SEVERITY_DEBUG
,
"CQ:%p ref %d -> %d %s"
,
cc
,
gpr_log
(
file
,
line
,
GPR_LOG_SEVERITY_DEBUG
,
"CQ:%p ref %d -> %d %s"
,
cc
,
(
int
)
cqd
->
owning_refs
.
count
,
(
int
)
cqd
->
owning_refs
.
count
+
1
,
reason
);
(
int
)
cqd
->
owning_refs
.
count
,
(
int
)
cqd
->
owning_refs
.
count
+
1
,
reason
);
#else
#else
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment