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
2b49ea9d
Commit
2b49ea9d
authored
8 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Fix compile erors
parent
e428dbc8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/lib/iomgr/ev_epoll_linux.c
+3
-4
3 additions, 4 deletions
src/core/lib/iomgr/ev_epoll_linux.c
with
3 additions
and
4 deletions
src/core/lib/iomgr/ev_epoll_linux.c
+
3
−
4
View file @
2b49ea9d
...
...
@@ -276,7 +276,7 @@ static void append_error(grpc_error **composite, grpc_error *error,
static
grpc_wakeup_fd
polling_island_wakeup_fd
;
/* Forward declaration */
static
void
polling_island_delete
(
grpc_exec_ctx
*
exec_ctx
);
static
void
polling_island_delete
(
grpc_exec_ctx
*
exec_ctx
,
polling_island
*
pi
);
#ifdef GRPC_TSAN
/* Currently TSAN may incorrectly flag data races between epoll_ctl and
...
...
@@ -325,7 +325,7 @@ static void pi_unref(grpc_exec_ctx *exec_ctx, polling_island *pi) {
polling_island
*
next
=
(
polling_island
*
)
gpr_atm_acq_load
(
&
pi
->
merged_to
);
polling_island_delete
(
exec_ctx
,
pi
);
if
(
next
!=
NULL
)
{
PI_UNREF
(
next
,
"pi_delete"
);
/* Recursive call */
PI_UNREF
(
exec_ctx
,
next
,
"pi_delete"
);
/* Recursive call */
}
}
}
...
...
@@ -465,7 +465,6 @@ static polling_island *polling_island_create(grpc_exec_ctx *exec_ctx,
grpc_fd
*
initial_fd
,
grpc_error
**
error
)
{
polling_island
*
pi
=
NULL
;
char
*
err_msg
;
const
char
*
err_desc
=
"polling_island_create"
;
*
error
=
GRPC_ERROR_NONE
;
...
...
@@ -1273,7 +1272,7 @@ static void pollset_destroy(grpc_pollset *pollset) {
gpr_mu_destroy
(
&
pollset
->
mu
);
}
static
void
pollset_reset
(
grpc_exec_ctx
*
exec_ctx
,
grpc_pollset
*
pollset
)
{
static
void
pollset_reset
(
grpc_pollset
*
pollset
)
{
GPR_ASSERT
(
pollset
->
shutting_down
);
GPR_ASSERT
(
!
pollset_has_workers
(
pollset
));
pollset
->
shutting_down
=
false
;
...
...
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