Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
35787605
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看板
提交
35787605
编写于
8月 06, 2011
作者:
R
Rich Felker
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
simplify multi-threaded errno, eliminate useless function pointer
上级
98acf04f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
12 deletion
+5
-12
src/errno/__errno_location.c
src/errno/__errno_location.c
+2
-3
src/internal/libc.h
src/internal/libc.h
+1
-2
src/thread/pthread_self.c
src/thread/pthread_self.c
+2
-7
未找到文件。
src/errno/__errno_location.c
浏览文件 @
35787605
#include <errno.h>
#include "libc.h"
#include "pthread_impl.h"
int
*
__errno_location
(
void
)
{
static
int
e
;
if
(
libc
.
errno_location
)
return
libc
.
errno_location
()
;
if
(
libc
.
main_thread
)
return
__pthread_self
()
->
errno_ptr
;
return
&
e
;
}
src/internal/libc.h
浏览文件 @
35787605
...
...
@@ -5,7 +5,7 @@
#include <stdio.h>
struct
__libc
{
int
*
(
*
errno_location
)(
void
)
;
void
*
main_thread
;
int
threaded
;
int
canceldisable
;
int
(
*
atexit
)(
void
(
*
)(
void
));
...
...
@@ -14,7 +14,6 @@ struct __libc {
volatile
int
threads_minus_1
;
int
ofl_lock
;
FILE
*
ofl_head
;
void
*
main_thread
;
};
...
...
src/thread/pthread_self.c
浏览文件 @
35787605
...
...
@@ -6,21 +6,16 @@ static struct pthread main_thread;
static
const
void
*
dummy
[
1
]
=
{
0
};
weak_alias
(
dummy
,
__pthread_tsd_main
);
static
int
*
errno_location
()
{
return
__pthread_self
()
->
errno_ptr
;
}
static
int
init_main_thread
()
{
if
(
__set_thread_area
(
&
main_thread
)
<
0
)
return
-
1
;
main_thread
.
canceldisable
=
libc
.
canceldisable
;
main_thread
.
tsd
=
(
void
**
)
__pthread_tsd_main
;
main_thread
.
self
=
libc
.
main_thread
=
&
main_thread
;
main_thread
.
errno_ptr
=
__errno_location
();
libc
.
errno_location
=
errno_location
;
main_thread
.
self
=
&
main_thread
;
main_thread
.
tid
=
main_thread
.
pid
=
__syscall
(
SYS_set_tid_address
,
&
main_thread
.
tid
);
libc
.
main_thread
=
&
main_thread
;
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录