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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
045c8483
Commit
045c8483
authored
9 years ago
by
Craig Tiller
Browse files
Options
Downloads
Plain Diff
Merge pull request #4319 from yang-g/fixit_call_log_batch_c
remove unused code
parents
6adc1730
330c98a4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/surface/call.h
+0
-13
0 additions, 13 deletions
src/core/surface/call.h
src/core/surface/call_log_batch.c
+0
-23
0 additions, 23 deletions
src/core/surface/call_log_batch.c
with
0 additions
and
36 deletions
src/core/surface/call.h
+
0
−
13
View file @
045c8483
...
@@ -91,19 +91,6 @@ void grpc_call_log_batch(char *file, int line, gpr_log_severity severity,
...
@@ -91,19 +91,6 @@ void grpc_call_log_batch(char *file, int line, gpr_log_severity severity,
grpc_call
*
call
,
const
grpc_op
*
ops
,
size_t
nops
,
grpc_call
*
call
,
const
grpc_op
*
ops
,
size_t
nops
,
void
*
tag
);
void
*
tag
);
void
grpc_server_log_request_call
(
char
*
file
,
int
line
,
gpr_log_severity
severity
,
grpc_server
*
server
,
grpc_call
**
call
,
grpc_call_details
*
details
,
grpc_metadata_array
*
initial_metadata
,
grpc_completion_queue
*
cq_bound_to_call
,
grpc_completion_queue
*
cq_for_notification
,
void
*
tag
);
void
grpc_server_log_shutdown
(
char
*
file
,
int
line
,
gpr_log_severity
severity
,
grpc_server
*
server
,
grpc_completion_queue
*
cq
,
void
*
tag
);
/* Set a context pointer.
/* Set a context pointer.
No thread safety guarantees are made wrt this value. */
No thread safety guarantees are made wrt this value. */
void
grpc_call_context_set
(
grpc_call
*
call
,
grpc_context_index
elem
,
void
grpc_call_context_set
(
grpc_call
*
call
,
grpc_context_index
elem
,
...
...
This diff is collapsed.
Click to expand it.
src/core/surface/call_log_batch.c
+
0
−
23
View file @
045c8483
...
@@ -117,26 +117,3 @@ void grpc_call_log_batch(char *file, int line, gpr_log_severity severity,
...
@@ -117,26 +117,3 @@ void grpc_call_log_batch(char *file, int line, gpr_log_severity severity,
}
}
}
}
void
grpc_server_log_request_call
(
char
*
file
,
int
line
,
gpr_log_severity
severity
,
grpc_server
*
server
,
grpc_call
**
call
,
grpc_call_details
*
details
,
grpc_metadata_array
*
initial_metadata
,
grpc_completion_queue
*
cq_bound_to_call
,
grpc_completion_queue
*
cq_for_notification
,
void
*
tag
)
{
gpr_log
(
file
,
line
,
severity
,
"grpc_server_request_call(server=%p, call=%p, details=%p, "
"initial_metadata=%p, cq_bound_to_call=%p, cq_for_notification=%p, "
"tag=%p)"
,
server
,
call
,
details
,
initial_metadata
,
cq_bound_to_call
,
cq_for_notification
,
tag
);
}
void
grpc_server_log_shutdown
(
char
*
file
,
int
line
,
gpr_log_severity
severity
,
grpc_server
*
server
,
grpc_completion_queue
*
cq
,
void
*
tag
)
{
gpr_log
(
file
,
line
,
severity
,
"grpc_server_shutdown_and_notify(server=%p, cq=%p, tag=%p)"
,
server
,
cq
,
tag
);
}
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
register
or
sign in
to comment