Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osv
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Verlässliche Systemsoftware
projects
osv
Commits
7309084c
Commit
7309084c
authored
12 years ago
by
Christoph Hellwig
Browse files
Options
Downloads
Patches
Plain Diff
add a mallopt() stub
parent
9db335a1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
runtime.cc
+7
-1
7 additions, 1 deletion
runtime.cc
with
7 additions
and
1 deletion
runtime.cc
+
7
−
1
View file @
7309084c
...
...
@@ -84,7 +84,7 @@ extern "C" {
__locale_t
__l
)
__THROW
__nonnull
((
2
,
4
));
size_t
__wcsxfrm_l
(
wchar_t
*
__s1
,
__const
wchar_t
*
__s2
,
size_t
__n
,
__locale_t
__loc
)
__THROW
;
int
mallopt
(
int
param
,
int
value
);
}
void
*
__dso_handle
;
...
...
@@ -620,6 +620,12 @@ size_t confstr(int name, char* buf, size_t len)
abort
();
}
int
mallopt
(
int
param
,
int
value
)
{
debug
(
fmt
(
"mallopt: unimplemented paramater %1%"
)
%
param
);
return
0
;
}
long
timezone
;
char
*
__environ_array
[
1
];
...
...
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