Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
Zipr Backend
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Open Source Software
Zipr Backend
Commits
346536a7
Commit
346536a7
authored
6 years ago
by
Jason Hiser
Browse files
Options
Downloads
Patches
Plain Diff
fixed typo made during conversion to zipr-sdk standardization
parent
6b01c949
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#1986
passed
6 years ago
Stage: clean
Stage: build
Stage: test
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/zipr_mem_space.h
+2
-2
2 additions, 2 deletions
include/zipr_mem_space.h
with
2 additions
and
2 deletions
include/zipr_mem_space.h
+
2
−
2
View file @
346536a7
...
...
@@ -53,7 +53,7 @@ class ZiprMemorySpace_t : public MemorySpace_t
RangeSet_t
::
iterator
findFreeRange
(
RangeAddress_t
addr
)
{
return
FindFreeRange
(
addr
);
}
void
addFreeRange
(
Range_t
newRange
)
{
return
AddFreeRange
(
newRange
);
}
void
addFreeRange
(
Range_t
newRange
,
bool
original
)
{
return
AddFreeRange
(
newRange
,
original
);
}
void
removeFreeRange
(
Range_t
newRange
)
{
return
r
emoveFreeRange
(
newRange
);
}
void
removeFreeRange
(
Range_t
newRange
)
{
return
R
emoveFreeRange
(
newRange
);
}
Range_t
getLargeRange
(
void
)
{
return
GetLargeRange
();
}
bool
areBytesFree
(
RangeAddress_t
addr
,
int
num_bytes
)
{
return
AreBytesFree
(
addr
,
num_bytes
);
}
bool
isByteFree
(
RangeAddress_t
addr
)
{
return
IsByteFree
(
addr
);
}
...
...
@@ -65,7 +65,7 @@ class ZiprMemorySpace_t : public MemorySpace_t
RangeAddress_t
getMinPlopped
()
const
{
return
min_plopped
;
}
RangeAddress_t
getMaxPlopped
()
const
{
return
max_plopped
;
}
ZiprOptionsNamespace_t
*
registerOptions
(
ZiprOptionsNamespace_t
*
ns
)
{
return
RegisterOptions
(
ns
);
}
int
getRangeCount
()
{
return
g
etRangeCount
();
}
int
getRangeCount
()
{
return
G
etRangeCount
();
}
...
...
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