Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zipr-sdk
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
Open Source Software
zipr-sdk
Commits
bf183f93
Commit
bf183f93
authored
9 years ago
by
whh8b
Browse files
Options
Downloads
Patches
Plain Diff
Add GetFreeRanges() and second version of SplitFreeRange().
parent
f862e260
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/memory_space.h
+2
-0
2 additions, 0 deletions
include/memory_space.h
with
2 additions
and
0 deletions
include/memory_space.h
+
2
−
0
View file @
bf183f93
...
...
@@ -44,9 +44,11 @@ class MemorySpace_t : public std::map<RangeAddress_t,char>
// range operatations
virtual
void
SplitFreeRange
(
RangeAddress_t
addr
)
=
0
;
virtual
void
SplitFreeRange
(
Range_t
range
)
=
0
;
virtual
void
MergeFreeRange
(
RangeAddress_t
addr
)
=
0
;
virtual
RangeSet_t
::
iterator
FindFreeRange
(
RangeAddress_t
addr
)
=
0
;
virtual
Range_t
GetFreeRange
(
int
size
)
=
0
;
virtual
std
::
list
<
Range_t
>
GetFreeRanges
(
size_t
size
=
0
)
=
0
;
virtual
std
::
pair
<
RangeSet_t
::
const_iterator
,
RangeSet_t
::
const_iterator
>
GetNearbyFreeRanges
(
const
RangeAddress_t
hint
,
size_t
count
=
0
)
=
0
;
virtual
void
AddFreeRange
(
Range_t
newRange
)
=
0
;
...
...
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