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
cdd9e568
Commit
cdd9e568
authored
7 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
C++ compatibility fix for stack_lockfree.c
parent
f5a1b750
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/lib/support/stack_lockfree.c
+3
-3
3 additions, 3 deletions
src/core/lib/support/stack_lockfree.c
with
3 additions
and
3 deletions
src/core/lib/support/stack_lockfree.c
+
3
−
3
View file @
cdd9e568
...
@@ -76,13 +76,13 @@ struct gpr_stack_lockfree {
...
@@ -76,13 +76,13 @@ struct gpr_stack_lockfree {
gpr_stack_lockfree
*
gpr_stack_lockfree_create
(
size_t
entries
)
{
gpr_stack_lockfree
*
gpr_stack_lockfree_create
(
size_t
entries
)
{
gpr_stack_lockfree
*
stack
;
gpr_stack_lockfree
*
stack
;
stack
=
gpr_malloc
(
sizeof
(
*
stack
));
stack
=
(
gpr_stack_lockfree
*
)
gpr_malloc
(
sizeof
(
*
stack
));
/* Since we only allocate 16 bits to represent an entry number,
/* Since we only allocate 16 bits to represent an entry number,
* make sure that we are within the desired range */
* make sure that we are within the desired range */
/* Reserve the highest entry number as a dummy */
/* Reserve the highest entry number as a dummy */
GPR_ASSERT
(
entries
<
INVALID_ENTRY_INDEX
);
GPR_ASSERT
(
entries
<
INVALID_ENTRY_INDEX
);
stack
->
entries
=
gpr_malloc_aligned
(
entries
*
sizeof
(
stack
->
entries
[
0
]),
stack
->
entries
=
(
lockfree_node
*
)
gpr_malloc_aligned
(
ENTRY_ALIGNMENT_BITS
);
entries
*
sizeof
(
stack
->
entries
[
0
]),
ENTRY_ALIGNMENT_BITS
);
/* Clear out all entries */
/* Clear out all entries */
memset
(
stack
->
entries
,
0
,
entries
*
sizeof
(
stack
->
entries
[
0
]));
memset
(
stack
->
entries
,
0
,
entries
*
sizeof
(
stack
->
entries
[
0
]));
memset
(
&
stack
->
head
,
0
,
sizeof
(
stack
->
head
));
memset
(
&
stack
->
head
,
0
,
sizeof
(
stack
->
head
));
...
...
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