Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
ee7ee589
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看板
未验证
提交
ee7ee589
编写于
6月 15, 2022
作者:
O
openharmony_ci
提交者:
Gitee
6月 15, 2022
浏览文件
操作
浏览文件
下载
差异文件
!331 将sighook和sigunhook 两个定义移到 porting/linux/user/include/signal.h文件中
Merge pull request !331 from shuxinyiA/master
上级
3236e8a1
4d6eeac0
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
11 addition
and
11 deletion
+11
-11
arch/aarch64/bits/signal.h
arch/aarch64/bits/signal.h
+0
-2
arch/arm/bits/signal.h
arch/arm/bits/signal.h
+1
-2
porting/linux/user/include/signal.h
porting/linux/user/include/signal.h
+6
-3
porting/linux/user/src/hook/musl_preinit.c
porting/linux/user/src/hook/musl_preinit.c
+4
-4
未找到文件。
arch/aarch64/bits/signal.h
浏览文件 @
ee7ee589
...
...
@@ -149,7 +149,5 @@ typedef struct __ucontext {
#define SIGPWR 30
#define SIGSYS 31
#define SIGUNUSED SIGSYS
#define SIGHOOK 36
#define SIGUNHOOK 37
#define _NSIG 65
arch/arm/bits/signal.h
浏览文件 @
ee7ee589
...
...
@@ -82,7 +82,6 @@ typedef struct __ucontext {
#define SIGPWR 30
#define SIGSYS 31
#define SIGUNUSED SIGSYS
#define SIGHOOK 36
#define SIGUNHOOK 37
#define _NSIG 65
porting/linux/user/include/signal.h
浏览文件 @
ee7ee589
...
...
@@ -41,6 +41,7 @@ extern "C" {
#define SI_USER 0
#define SI_KERNEL 128
typedef
struct
sigaltstack
stack_t
;
#endif
...
...
@@ -196,9 +197,11 @@ int __libc_current_sigrtmax(void);
#define SIGRTMAX (__libc_current_sigrtmax())
#define MUSL_SIGNAL_NATIVE_REMOTE (SIGRTMIN + 0)
#define MUSL_SIGNAL_NATIVE_LOCAL (SIGRTMIN + 1)
#define MUSL_SIGNAL_JSHEAP (SIGRTMIN + 2)
#define MUSL_SIGNAL_JSHEAP_PRIV (SIGRTMIN + 3)
#define MUSL_SIGNAL_HOOK (SIGRTMIN + 1)
#define MUSL_SIGNAL_UNHOOK (SIGRTMIN + 2)
#define MUSL_SIGNAL_NATIVE_LOCAL (SIGRTMIN + 3)
#define MUSL_SIGNAL_JSHEAP (SIGRTMIN + 4)
#define MUSL_SIGNAL_JSHEAP_PRIV (SIGRTMIN + 5)
int
kill
(
pid_t
,
int
);
int
tgkill
(
int
__tgid
,
int
__tid
,
int
__signal
);
...
...
porting/linux/user/src/hook/musl_preinit.c
浏览文件 @
ee7ee589
...
...
@@ -357,14 +357,14 @@ static void __install_malloc_hook_signal_handler()
struct
sigaction
actionInstallHook
=
{};
actionInstallHook
.
sa_handler
=
__install_malloc_hook
;
sigemptyset
(
&
actionInstallHook
.
sa_mask
);
sigaddset
(
&
actionInstallHook
.
sa_mask
,
SIG
UNHOOK
);
sigaction
(
SIG
HOOK
,
&
actionInstallHook
,
NULL
);
sigaddset
(
&
actionInstallHook
.
sa_mask
,
MUSL_SIGNAL_
UNHOOK
);
sigaction
(
MUSL_SIGNAL_
HOOK
,
&
actionInstallHook
,
NULL
);
struct
sigaction
actionDef
=
{};
actionDef
.
sa_handler
=
__uninstal_malloc_hook
;
sigemptyset
(
&
actionDef
.
sa_mask
);
sigaddset
(
&
actionDef
.
sa_mask
,
SIG
HOOK
);
sigaction
(
SIG
UNHOOK
,
&
actionDef
,
NULL
);
sigaddset
(
&
actionDef
.
sa_mask
,
MUSL_SIGNAL_
HOOK
);
sigaction
(
MUSL_SIGNAL_
UNHOOK
,
&
actionDef
,
NULL
);
}
static
void
__initialize_malloc
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录