Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
55a1c9c8
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
1 年多 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
55a1c9c8
编写于
9月 06, 2018
作者:
R
Rich Felker
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
move declarations for malloc internals to malloc_impl.h
上级
18bf0829
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
7 addition
and
7 deletion
+7
-7
ldso/dynlink.c
ldso/dynlink.c
+1
-1
src/internal/malloc_impl.h
src/internal/malloc_impl.h
+4
-0
src/malloc/expand_heap.c
src/malloc/expand_heap.c
+1
-2
src/malloc/lite_malloc.c
src/malloc/lite_malloc.c
+1
-2
src/malloc/malloc.c
src/malloc/malloc.c
+0
-2
未找到文件。
ldso/dynlink.c
浏览文件 @
55a1c9c8
...
...
@@ -20,6 +20,7 @@
#include "pthread_impl.h"
#include "libc.h"
#include "dynlink.h"
#include "malloc_impl.h"
static
void
error
(
const
char
*
,
...);
...
...
@@ -500,7 +501,6 @@ static void redo_lazy_relocs()
static
void
reclaim
(
struct
dso
*
dso
,
size_t
start
,
size_t
end
)
{
void
__malloc_donate
(
char
*
,
char
*
);
if
(
start
>=
dso
->
relro_start
&&
start
<
dso
->
relro_end
)
start
=
dso
->
relro_end
;
if
(
end
>=
dso
->
relro_start
&&
end
<
dso
->
relro_end
)
end
=
dso
->
relro_start
;
if
(
start
>=
end
)
return
;
...
...
src/internal/malloc_impl.h
浏览文件 @
55a1c9c8
...
...
@@ -8,6 +8,10 @@ int __munmap(void *, size_t);
void
*
__mremap
(
void
*
,
size_t
,
size_t
,
int
,
...);
int
__madvise
(
void
*
,
size_t
,
int
);
void
*
__expand_heap
(
size_t
*
);
void
__malloc_donate
(
char
*
,
char
*
);
struct
chunk
{
size_t
psize
,
csize
;
struct
chunk
*
next
,
*
prev
;
...
...
src/malloc/expand_heap.c
浏览文件 @
55a1c9c8
...
...
@@ -4,6 +4,7 @@
#include <sys/mman.h>
#include "libc.h"
#include "syscall.h"
#include "malloc_impl.h"
/* This function returns true if the interval [old,new]
* intersects the 'len'-sized interval below &libc.auxv
...
...
@@ -27,8 +28,6 @@ static int traverses_stack_p(uintptr_t old, uintptr_t new)
return
0
;
}
void
*
__mmap
(
void
*
,
size_t
,
int
,
int
,
int
,
off_t
);
/* Expand the heap in-place if brk can be used, or otherwise via mmap,
* using an exponential lower bound on growth by mmap to make
* fragmentation asymptotically irrelevant. The size argument is both
...
...
src/malloc/lite_malloc.c
浏览文件 @
55a1c9c8
...
...
@@ -3,11 +3,10 @@
#include <limits.h>
#include <errno.h>
#include "libc.h"
#include "malloc_impl.h"
#define ALIGN 16
void
*
__expand_heap
(
size_t
*
);
static
void
*
__simple_malloc
(
size_t
n
)
{
static
char
*
cur
,
*
end
;
...
...
src/malloc/malloc.c
浏览文件 @
55a1c9c8
...
...
@@ -123,8 +123,6 @@ void __dump_heap(int x)
}
#endif
void
*
__expand_heap
(
size_t
*
);
static
struct
chunk
*
expand_heap
(
size_t
n
)
{
static
int
heap_lock
[
2
];
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录