Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-uggrid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
staging
dune-uggrid
Commits
78c8173e
Commit
78c8173e
authored
12 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
Use enum name instead of INT for allocation mode parameters
[[Imported from SVN: r8467]]
parent
8ea01248
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
low/heaps.c
+2
-2
2 additions, 2 deletions
low/heaps.c
low/heaps.h
+5
-4
5 additions, 4 deletions
low/heaps.h
with
7 additions
and
6 deletions
low/heaps.c
+
2
−
2
View file @
78c8173e
...
...
@@ -277,7 +277,7 @@ HEAP *NS_PREFIX NewHeap (enum HeapType type, MEM size, void *buffer)
*/
/****************************************************************************/
void
*
NS_PREFIX
GetMem
(
HEAP
*
theHeap
,
MEM
n
,
INT
mode
)
void
*
NS_PREFIX
GetMem
(
HEAP
*
theHeap
,
MEM
n
,
HeapAllocMode
mode
)
{
BLOCK
*
theBlock
,
*
newBlock
;
long
newsize
,
allocated
;
...
...
@@ -378,7 +378,7 @@ void *NS_PREFIX GetMem (HEAP *theHeap, MEM n, INT mode)
return
(
NULL
);
}
void
*
NS_PREFIX
GetMemUsingKey
(
HEAP
*
theHeap
,
MEM
n
,
INT
mode
,
INT
key
)
void
*
NS_PREFIX
GetMemUsingKey
(
HEAP
*
theHeap
,
MEM
n
,
HeapAllocMode
mode
,
INT
key
)
{
if
(
theHeap
->
type
==
SIMPLE_HEAP
)
{
...
...
This diff is collapsed.
Click to expand it.
low/heaps.h
+
5
−
4
View file @
78c8173e
...
...
@@ -78,8 +78,9 @@ enum HeapType {GENERAL_HEAP, /**< Heap with alloc/free mechanis
SIMPLE_HEAP
/**< Heap with mark/release mechanism*/
};
enum
{
FROM_TOP
=
1
,
/**< Allocate from top of stack */
FROM_BOTTOM
=
2
/**< Allocate from bottom of stack */
enum
HeapAllocMode
{
FROM_TOP
=
1
,
/**< Allocate from top of stack */
FROM_BOTTOM
=
2
/**< Allocate from bottom of stack */
};
/** \brief Number of free object pointers */
...
...
@@ -216,8 +217,8 @@ INT InitHeaps (void);
/** @name Functions for the simple and general heap management */
/* @{ */
HEAP
*
NewHeap
(
enum
HeapType
type
,
MEM
size
,
void
*
buffer
);
void
*
GetMem
(
HEAP
*
theHeap
,
MEM
n
,
INT
mode
);
void
*
GetMemUsingKey
(
HEAP
*
theHeap
,
MEM
n
,
INT
mode
,
INT
key
);
void
*
GetMem
(
HEAP
*
theHeap
,
MEM
n
,
HeapAllocMode
mode
);
void
*
GetMemUsingKey
(
HEAP
*
theHeap
,
MEM
n
,
HeapAllocMode
mode
,
INT
key
);
void
DisposeMem
(
HEAP
*
theHeap
,
void
*
buffer
);
void
*
GetFreelistMemory
(
HEAP
*
theHeap
,
INT
size
);
...
...
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