Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
1a82d74c
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看板
未验证
提交
1a82d74c
编写于
6月 17, 2022
作者:
O
openharmony_ci
提交者:
Gitee
6月 17, 2022
浏览文件
操作
浏览文件
下载
差异文件
!328 线程栈命名修改
Merge pull request !328 from fangting10/master
上级
e5ab945c
1bad99ef
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
20 addition
and
10 deletion
+20
-10
porting/linux/user/src/thread/pthread_create.c
porting/linux/user/src/thread/pthread_create.c
+20
-10
未找到文件。
porting/linux/user/src/thread/pthread_create.c
浏览文件 @
1a82d74c
...
...
@@ -18,6 +18,24 @@ void log_print(const char* info,...)
va_end
(
ap
);
}
void
stack_naming
(
struct
pthread
*
new
){
size_t
size_len
;
unsigned
char
*
start_addr
;
char
name
[
ANON_STACK_NAME_SIZE
];
if
(
new
->
guard_size
)
{
snprintf
(
name
,
ANON_STACK_NAME_SIZE
,
"guard:%d"
,
new
->
tid
);
prctl
(
PR_SET_VMA
,
PR_SET_VMA_ANON_NAME
,
new
->
map_base
,
new
->
guard_size
,
name
);
start_addr
=
new
->
map_base
+
new
->
guard_size
;
size_len
=
new
->
map_size
-
new
->
guard_size
;
memset
(
name
,
0
,
ANON_STACK_NAME_SIZE
);
}
else
{
start_addr
=
new
->
map_base
;
size_len
=
new
->
map_size
;
}
snprintf
(
name
,
ANON_STACK_NAME_SIZE
,
"stack:%d"
,
new
->
tid
);
prctl
(
PR_SET_VMA
,
PR_SET_VMA_ANON_NAME
,
start_addr
,
size_len
,
name
);
};
#ifdef RESERVE_SIGNAL_STACK
#if defined (__LF64__)
#define RESERVE_SIGNAL_STACK_SIZE (32 * 1024)
...
...
@@ -348,25 +366,15 @@ int __pthread_create(pthread_t *restrict res, const pthread_attr_t *restrict att
__munmap
(
map
,
size
);
goto
fail
;
}
char
guard_name
[
ANON_STACK_NAME_SIZE
];
snprintf
(
guard_name
,
ANON_STACK_NAME_SIZE
,
"guard:%d"
,
__pthread_self
()
->
tid
);
prctl
(
PR_SET_VMA
,
PR_SET_VMA_ANON_NAME
,
map
,
guard
,
guard_name
);
start_addr
=
map
+
guard
;
size_len
=
size
-
guard
;
}
else
{
map
=
__mmap
(
0
,
size
,
PROT_READ
|
PROT_WRITE
,
MAP_PRIVATE
|
MAP_ANON
,
-
1
,
0
);
if
(
map
==
MAP_FAILED
)
goto
fail
;
start_addr
=
map
;
size_len
=
size
;
}
tsd
=
map
+
size
-
__pthread_tsd_size
;
if
(
!
stack
)
{
stack
=
tsd
-
libc
.
tls_size
;
stack_limit
=
map
+
guard
;
}
char
name
[
ANON_STACK_NAME_SIZE
];
snprintf
(
name
,
ANON_STACK_NAME_SIZE
,
"stack:%d"
,
__pthread_self
()
->
tid
);
prctl
(
PR_SET_VMA
,
PR_SET_VMA_ANON_NAME
,
start_addr
,
size_len
,
name
);
}
new
=
__copy_tls
(
tsd
-
libc
.
tls_size
);
...
...
@@ -429,6 +437,8 @@ int __pthread_create(pthread_t *restrict res, const pthread_attr_t *restrict att
}
if
(
ret
>=
0
)
{
stack_naming
(
new
);
new
->
next
=
self
->
next
;
new
->
prev
=
self
;
new
->
next
->
prev
=
new
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录