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
234084d4
Commit
234084d4
authored
8 years ago
by
whh8b
Browse files
Options
Downloads
Plain Diff
Merge sleds code.
parents
c65dfd8e
ef2f1a4a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitattributes
+2
-0
2 additions, 0 deletions
.gitattributes
include/memory_space.h
+1
-0
1 addition, 0 deletions
include/memory_space.h
include/zipr_constants.h
+42
-0
42 additions, 0 deletions
include/zipr_constants.h
sleds.zipr_sdk.patch
+59
-0
59 additions, 0 deletions
sleds.zipr_sdk.patch
with
104 additions
and
0 deletions
.gitattributes
+
2
−
0
View file @
234084d4
...
@@ -6,6 +6,8 @@ include/dollop_man.h -text
...
@@ -6,6 +6,8 @@ include/dollop_man.h -text
include/memory_space.h -text
include/memory_space.h -text
include/range.h -text
include/range.h -text
include/zipr.h -text
include/zipr.h -text
include/zipr_constants.h -text
include/zipr_options.h -text
include/zipr_options.h -text
include/zipr_plugin.h -text
include/zipr_plugin.h -text
include/zipr_sdk.h -text
include/zipr_sdk.h -text
/sleds.zipr_sdk.patch -text
This diff is collapsed.
Click to expand it.
include/memory_space.h
+
1
−
0
View file @
234084d4
...
@@ -46,6 +46,7 @@ class MemorySpace_t : public std::map<RangeAddress_t,char>
...
@@ -46,6 +46,7 @@ class MemorySpace_t : public std::map<RangeAddress_t,char>
virtual
void
SplitFreeRange
(
RangeAddress_t
addr
)
=
0
;
virtual
void
SplitFreeRange
(
RangeAddress_t
addr
)
=
0
;
virtual
void
SplitFreeRange
(
Range_t
range
)
=
0
;
virtual
void
SplitFreeRange
(
Range_t
range
)
=
0
;
virtual
void
MergeFreeRange
(
RangeAddress_t
addr
)
=
0
;
virtual
void
MergeFreeRange
(
RangeAddress_t
addr
)
=
0
;
virtual
void
MergeFreeRange
(
Range_t
range
)
=
0
;
virtual
RangeSet_t
::
iterator
FindFreeRange
(
RangeAddress_t
addr
)
=
0
;
virtual
RangeSet_t
::
iterator
FindFreeRange
(
RangeAddress_t
addr
)
=
0
;
virtual
Range_t
GetFreeRange
(
int
size
)
=
0
;
virtual
Range_t
GetFreeRange
(
int
size
)
=
0
;
virtual
std
::
list
<
Range_t
>
GetFreeRanges
(
size_t
size
=
0
)
=
0
;
virtual
std
::
list
<
Range_t
>
GetFreeRanges
(
size_t
size
=
0
)
=
0
;
...
...
This diff is collapsed.
Click to expand it.
include/zipr_constants.h
0 → 100644
+
42
−
0
View file @
234084d4
/***************************************************************************
* Copyright (c) 2014 Zephyr Software LLC. All rights reserved.
*
* This software is furnished under a license and/or other restrictive
* terms and may be used and copied only in accordance with such terms
* and the inclusion of the above copyright notice. This software or
* any other copies thereof may not be provided or otherwise made
* available to any other person without the express written consent
* of an authorized representative of Zephyr Software LCC. Title to,
* ownership of, and all rights in the software is retained by
* Zephyr Software LCC.
*
* Zephyr Software LLC. Proprietary Information
*
* Unless otherwise specified, the information contained in this
* directory, following this legend, and/or referenced herein is
* Zephyr Software LLC. (Zephyr) Proprietary Information.
*
* CONTACT
*
* For technical assistance, contact Zephyr Software LCC. at:
*
*
* Zephyr Software, LLC
* 2040 Tremont Rd
* Charlottesville, VA 22911
*
* E-mail: jwd@zephyr-software.com
**************************************************************************/
#ifndef ZIPR_CONSTANTS_H
#define ZIPR_CONSTANTS_H
namespace
Zipr_SDK
{
enum
{
DEFAULT_TRAMPOLINE_SIZE
=
5
};
};
#endif
This diff is collapsed.
Click to expand it.
sleds.zipr_sdk.patch
0 → 100644
+
59
−
0
View file @
234084d4
Index: include/memory_space.h
===================================================================
--- include/memory_space.h (revision 21014)
+++ include/memory_space.h (working copy)
@@ -46,6 +46,7 @@
virtual void SplitFreeRange(RangeAddress_t addr)=0;
virtual void SplitFreeRange(Range_t range)=0;
virtual void MergeFreeRange(RangeAddress_t addr)=0;
+ virtual void MergeFreeRange(Range_t range)=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;
Index: include/zipr_constants.h
===================================================================
--- include/zipr_constants.h (revision 0)
+++ include/zipr_constants.h (working copy)
@@ -0,0 +1,42 @@
+/***************************************************************************
+ * Copyright (c) 2014 Zephyr Software LLC. All rights reserved.
+ *
+ * This software is furnished under a license and/or other restrictive
+ * terms and may be used and copied only in accordance with such terms
+ * and the inclusion of the above copyright notice. This software or
+ * any other copies thereof may not be provided or otherwise made
+ * available to any other person without the express written consent
+ * of an authorized representative of Zephyr Software LCC. Title to,
+ * ownership of, and all rights in the software is retained by
+ * Zephyr Software LCC.
+ *
+ * Zephyr Software LLC. Proprietary Information
+ *
+ * Unless otherwise specified, the information contained in this
+ * directory, following this legend, and/or referenced herein is
+ * Zephyr Software LLC. (Zephyr) Proprietary Information.
+ *
+ * CONTACT
+ *
+ * For technical assistance, contact Zephyr Software LCC. at:
+ *
+ *
+ * Zephyr Software, LLC
+ * 2040 Tremont Rd
+ * Charlottesville, VA 22911
+ *
+ * E-mail: jwd@zephyr-software.com
+ **************************************************************************/
+
+
+
+#ifndef ZIPR_CONSTANTS_H
+#define ZIPR_CONSTANTS_H
+
+namespace Zipr_SDK {
+ enum {
+ DEFAULT_TRAMPOLINE_SIZE=5
+ };
+};
+
+#endif
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