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
1bd9ea40
Commit
1bd9ea40
authored
9 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Refine condition
parent
389297de
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/transport/chttp2_transport.c
+3
-2
3 additions, 2 deletions
src/core/transport/chttp2_transport.c
src/core/transport/transport.h
+1
-2
1 addition, 2 deletions
src/core/transport/transport.h
with
4 additions
and
4 deletions
src/core/transport/chttp2_transport.c
+
3
−
2
View file @
1bd9ea40
...
@@ -1006,8 +1006,9 @@ static void perform_transport_op(grpc_exec_ctx *exec_ctx, grpc_transport *gt,
...
@@ -1006,8 +1006,9 @@ static void perform_transport_op(grpc_exec_ctx *exec_ctx, grpc_transport *gt,
lock
(
t
);
lock
(
t
);
/* Let's be overly cautious: don't change any state while we're parsing */
/* If there's a set_accept_stream ensure that we're not parsing
if
(
t
->
parsing_active
)
{
to avoid changing things out from underneath */
if
(
t
->
parsing_active
&&
t
->
set_accept_stream
)
{
GPR_ASSERT
(
t
->
post_parsing_op
==
NULL
);
GPR_ASSERT
(
t
->
post_parsing_op
==
NULL
);
t
->
post_parsing_op
=
gpr_malloc
(
sizeof
(
*
op
));
t
->
post_parsing_op
=
gpr_malloc
(
sizeof
(
*
op
));
memcpy
(
t
->
post_parsing_op
,
op
,
sizeof
(
*
op
));
memcpy
(
t
->
post_parsing_op
,
op
,
sizeof
(
*
op
));
...
...
This diff is collapsed.
Click to expand it.
src/core/transport/transport.h
+
1
−
2
View file @
1bd9ea40
...
@@ -123,8 +123,7 @@ typedef struct grpc_transport_stream_op {
...
@@ -123,8 +123,7 @@ typedef struct grpc_transport_stream_op {
/** Transport op: a set of operations to perform on a transport as a whole */
/** Transport op: a set of operations to perform on a transport as a whole */
typedef
struct
grpc_transport_op
{
typedef
struct
grpc_transport_op
{
/** Called when processing of this op is done.
/** Called when processing of this op is done. */
Only one transport_op is allowed to be outstanding at any time. */
grpc_closure
*
on_consumed
;
grpc_closure
*
on_consumed
;
/** connectivity monitoring - set connectivity_state to NULL to unsubscribe */
/** connectivity monitoring - set connectivity_state to NULL to unsubscribe */
grpc_closure
*
on_connectivity_state_change
;
grpc_closure
*
on_connectivity_state_change
;
...
...
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