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
5d76a9fc
Commit
5d76a9fc
authored
18 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
bugfix: didn't compile as C
[[Imported from SVN: r8271]]
parent
3591e8b6
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
+1
-1
1 addition, 1 deletion
low/heaps.c
low/heaps.h
+2
-2
2 additions, 2 deletions
low/heaps.h
with
3 additions
and
3 deletions
low/heaps.c
+
1
−
1
View file @
5d76a9fc
...
...
@@ -190,7 +190,7 @@ INT NS_PREFIX InitHeaps ()
*/
/****************************************************************************/
HEAP
*
NS_PREFIX
NewHeap
(
HeapType
type
,
MEM
size
,
void
*
buffer
)
HEAP
*
NS_PREFIX
NewHeap
(
enum
HeapType
type
,
MEM
size
,
void
*
buffer
)
{
HEAP
*
theHeap
;
INT
i
;
...
...
This diff is collapsed.
Click to expand it.
low/heaps.h
+
2
−
2
View file @
5d76a9fc
...
...
@@ -148,7 +148,7 @@ struct block {
};
typedef
struct
{
HeapType
type
;
enum
HeapType
type
;
MEM
size
;
MEM
used
;
MEM
freelistmem
;
...
...
@@ -215,7 +215,7 @@ INT InitHeaps (void);
/** @name Functions for the simple and general heap management */
/* @{ */
HEAP
*
NewHeap
(
HeapType
type
,
MEM
size
,
void
*
buffer
);
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
DisposeMem
(
HEAP
*
theHeap
,
void
*
buffer
);
...
...
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