Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Kernel Liteos A
提交
024a8f27
K
Kernel Liteos A
项目概览
OpenHarmony
/
Kernel Liteos A
1 年多 前同步成功
通知
460
Star
414
Fork
55
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel Liteos A
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
024a8f27
编写于
8月 09, 2021
作者:
O
openharmony_ci
提交者:
Gitee
8月 09, 2021
浏览文件
操作
浏览文件
下载
差异文件
!484 修复由clockid计算pid和tid时原来的移位操作由于有符号数与无符号数运行结果不一致的问题
Merge pull request !484 from phchang/fixclockid
上级
9ec208a2
a6c02e29
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
17 addition
and
3 deletion
+17
-3
compat/posix/src/time.c
compat/posix/src/time.c
+17
-3
未找到文件。
compat/posix/src/time.c
浏览文件 @
024a8f27
...
...
@@ -452,11 +452,25 @@ int clock_settime(clockid_t clockID, const struct timespec *tp)
}
#ifdef LOSCFG_KERNEL_CPUP
inline
UINT32
GetTidFromClockID
(
clockid_t
clockID
)
{
// In musl/src/thread/pthread_getcpuclockid.c, we know 'clockid = (-tid - 1) * 8 + 6'
UINT32
tid
=
-
(
clockID
-
6
)
/
8
-
1
;
// 6 8 1 inverse operation from clockID to tid
return
tid
;
}
inline
const
pid_t
GetPidFromClockID
(
clockid_t
clockID
)
{
// In musl/src/time/clock_getcpuclockid.c, we know 'clockid = (-pid - 1) * 8 + 2'
const
pid_t
pid
=
-
(
clockID
-
2
)
/
8
-
1
;
// 2 8 1 inverse operation from clockID to pid
return
pid
;
}
static
int
PthreadGetCputime
(
clockid_t
clockID
,
struct
timespec
*
ats
)
{
uint64_t
runtime
;
UINT32
intSave
;
UINT32
tid
=
((
UINT32
)
~
((
UINT32
)(
clockID
)
>>
CPUCLOCK_ID_OFFSET
)
);
UINT32
tid
=
GetTidFromClockID
(
clockID
);
if
(
OS_TID_CHECK_INVALID
(
tid
))
{
return
-
EINVAL
;
...
...
@@ -482,7 +496,7 @@ static int ProcessGetCputime(clockid_t clockID, struct timespec *ats)
{
UINT64
runtime
;
UINT32
intSave
;
const
pid_t
pid
=
((
pid_t
)
~
((
UINT32
)(
clockID
)
>>
CPUCLOCK_ID_OFFSET
)
);
const
pid_t
pid
=
GetPidFromClockID
(
clockID
);
LosProcessCB
*
spcb
=
NULL
;
if
(
OsProcessIDUserCheckInvalid
(
pid
)
||
pid
<
0
)
{
...
...
@@ -524,7 +538,7 @@ static int GetCputime(clockid_t clockID, struct timespec *tp)
static
int
CheckClock
(
const
clockid_t
clockID
)
{
int
error
=
0
;
const
pid_t
pid
=
((
pid_t
)
~
((
UINT32
)(
clockID
)
>>
CPUCLOCK_ID_OFFSET
)
);
const
pid_t
pid
=
GetPidFromClockID
(
clockID
);
if
(
!
((
UINT32
)
clockID
&
CPUCLOCK_PERTHREAD_MASK
))
{
LosProcessCB
*
spcb
=
NULL
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录