Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
98acf04f
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看板
提交
98acf04f
编写于
8月 06, 2011
作者:
R
Rich Felker
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
use weak aliases rather than function pointers to simplify some code
上级
338b663d
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
20 addition
and
9 deletion
+20
-9
src/internal/libc.h
src/internal/libc.h
+0
-2
src/process/fork.c
src/process/fork.c
+8
-2
src/thread/cancel_dummy.c
src/thread/cancel_dummy.c
+6
-0
src/thread/cancel_impl.c
src/thread/cancel_impl.c
+1
-2
src/thread/pthread_atfork.c
src/thread/pthread_atfork.c
+2
-2
src/thread/pthread_testcancel.c
src/thread/pthread_testcancel.c
+3
-1
未找到文件。
src/internal/libc.h
浏览文件 @
98acf04f
...
...
@@ -6,10 +6,8 @@
struct
__libc
{
int
*
(
*
errno_location
)(
void
);
void
(
*
testcancel
)(
void
);
int
threaded
;
int
canceldisable
;
void
(
*
fork_handler
)(
int
);
int
(
*
atexit
)(
void
(
*
)(
void
));
void
(
*
fini
)(
void
);
void
(
*
ldso_fini
)(
void
);
...
...
src/process/fork.c
浏览文件 @
98acf04f
...
...
@@ -3,10 +3,16 @@
#include "libc.h"
#include "pthread_impl.h"
static
void
dummy
(
int
x
)
{
}
weak_alias
(
dummy
,
__fork_handler
);
pid_t
fork
(
void
)
{
pid_t
ret
;
if
(
libc
.
fork_handler
)
libc
.
fork_handler
(
-
1
);
__
fork_handler
(
-
1
);
ret
=
syscall
(
SYS_fork
);
if
(
libc
.
main_thread
&&
!
ret
)
{
pthread_t
self
=
__pthread_self
();
...
...
@@ -15,6 +21,6 @@ pid_t fork(void)
libc
.
threads_minus_1
=
0
;
libc
.
main_thread
=
self
;
}
if
(
libc
.
fork_handler
)
libc
.
fork_handler
(
!
ret
);
__
fork_handler
(
!
ret
);
return
ret
;
}
src/thread/cancel_dummy.c
浏览文件 @
98acf04f
...
...
@@ -6,3 +6,9 @@ static long sccp(long nr, long u, long v, long w, long x, long y, long z)
}
weak_alias
(
sccp
,
__syscall_cp
);
static
void
dummy
()
{
}
weak_alias
(
dummy
,
__testcancel
);
src/thread/cancel_impl.c
浏览文件 @
98acf04f
...
...
@@ -58,7 +58,7 @@ static void cancel_handler(int sig, siginfo_t *si, void *ctx)
__syscall
(
SYS_tgkill
,
self
->
pid
,
self
->
tid
,
SIGCANCEL
);
}
static
void
testcancel
()
void
__
testcancel
()
{
pthread_t
self
=
__pthread_self
();
if
(
self
->
cancel
&&
!
self
->
canceldisable
)
...
...
@@ -73,7 +73,6 @@ static void init_cancellation()
};
sigfillset
(
&
sa
.
sa_mask
);
__libc_sigaction
(
SIGCANCEL
,
&
sa
,
0
);
libc
.
testcancel
=
testcancel
;
}
int
pthread_cancel
(
pthread_t
t
)
...
...
src/thread/pthread_atfork.c
浏览文件 @
98acf04f
...
...
@@ -10,9 +10,10 @@ static struct atfork_funcs {
static
int
lock
;
static
void
fork_handler
(
int
who
)
void
__
fork_handler
(
int
who
)
{
struct
atfork_funcs
*
p
;
if
(
!
funcs
)
return
;
if
(
who
<
0
)
{
LOCK
(
&
lock
);
for
(
p
=
funcs
;
p
;
p
=
p
->
next
)
{
...
...
@@ -35,7 +36,6 @@ int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(vo
if
(
!
new
)
return
-
1
;
LOCK
(
&
lock
);
libc
.
fork_handler
=
fork_handler
;
new
->
next
=
funcs
;
new
->
prev
=
0
;
new
->
prepare
=
prepare
;
...
...
src/thread/pthread_testcancel.c
浏览文件 @
98acf04f
#include "pthread_impl.h"
void
__testcancel
(
void
);
void
pthread_testcancel
()
{
if
(
libc
.
testcancel
)
libc
.
testcancel
();
__
testcancel
();
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录