Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
3a1b1e18
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看板
未验证
提交
3a1b1e18
编写于
11月 07, 2022
作者:
Z
zhangcui
提交者:
Gitee
11月 07, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
解决udevd 进程无法抓取 启动内存的问题。
Signed-off-by:
N
zhangcui
<
zhangcui11@huawei.com
>
上级
aa191d48
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
0 addition
and
8 deletion
+0
-8
porting/linux/user/src/hook/musl_preinit.c
porting/linux/user/src/hook/musl_preinit.c
+0
-8
未找到文件。
porting/linux/user/src/hook/musl_preinit.c
浏览文件 @
3a1b1e18
...
...
@@ -67,7 +67,6 @@ static int parse_hook_variable(enum EnumHookMode* mode, char* path, int size)
if
(
!
mode
||
!
path
||
size
<=
0
)
{
return
-
1
;
}
bool
flag
=
__set_hook_flag
(
false
);
char
hook_param_value
[
OHOS_PARAM_MAX_SIZE
+
1
]
=
{
0
};
unsigned
int
len
=
OHOS_PARAM_MAX_SIZE
;
get_native_hook_param
(
hook_param_value
,
len
);
...
...
@@ -111,7 +110,6 @@ static int parse_hook_variable(enum EnumHookMode* mode, char* path, int size)
}
}
}
__set_hook_flag
(
flag
);
return
0
;
}
...
...
@@ -336,9 +334,7 @@ static void install_ohos_malloc_hook(struct musl_libc_globals* globals)
static
void
*
init_ohos_malloc_hook
()
{
bool
flag
=
__set_hook_flag
(
false
);
install_ohos_malloc_hook
(
&
__musl_libc_globals
);
__set_hook_flag
(
flag
);
return
NULL
;
}
...
...
@@ -375,12 +371,10 @@ static void __install_malloc_hook()
init_ohos_malloc_hook
();
}
}
else
if
(
shared_library_handle
!=
(
void
*
)
-
1
)
{
bool
flag
=
__set_hook_flag
(
false
);
on_start_func_t
start_func
=
(
on_start_func_t
)(
function_of_shared_lib
[
ON_START_FUNCTION
]);
if
(
start_func
&&
!
start_func
())
{
// __musl_log(__MUSL_LOG_ERROR, "%s: failed to enable malloc\n", getprogname());
}
__set_hook_flag
(
flag
);
volatile
const
struct
MallocDispatchType
*
so_dispatch_value
=
(
volatile
const
struct
MallocDispatchType
*
)
atomic_load_explicit
(
&
__musl_libc_globals
.
so_dispatch_table
,
memory_order_acquire
);
atomic_store_explicit
(
&
__musl_libc_globals
.
current_dispatch_table
,
(
volatile
long
long
)
so_dispatch_value
,
memory_order_seq_cst
);
}
...
...
@@ -389,14 +383,12 @@ static void __install_malloc_hook()
static
void
__uninstal_malloc_hook
()
{
atomic_store_explicit
(
&
__hook_enable_hook_flag
,
(
volatile
bool
)
false
,
memory_order_seq_cst
);
bool
flag
=
__set_hook_flag
(
false
);
__set_default_malloc
();
on_end_func_t
end_func
=
(
on_end_func_t
)(
function_of_shared_lib
[
ON_END_FUNCTION
]);
if
(
end_func
)
{
end_func
();
}
__set_hook_flag
(
flag
);
}
static
void
__install_malloc_hook_signal_handler
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录