Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
9b3c8ab0
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看板
提交
9b3c8ab0
编写于
12月 03, 2021
作者:
O
openharmony_ci
提交者:
Gitee
12月 03, 2021
浏览文件
操作
浏览文件
下载
差异文件
!166 扩展linux用户态下的接口sched_setscheduler
Merge pull request !166 from caifuzhou/master
上级
6d299e95
8f6a458c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
48 addition
and
0 deletion
+48
-0
libc-test/src/functional/sched_setscheduler.c
libc-test/src/functional/sched_setscheduler.c
+26
-0
libc-test/src/functional/test_src_functional.gni
libc-test/src/functional/test_src_functional.gni
+1
-0
musl_src.gni
musl_src.gni
+1
-0
porting/linux/user/src/sched/sched_setscheduler.c
porting/linux/user/src/sched/sched_setscheduler.c
+20
-0
未找到文件。
libc-test/src/functional/sched_setscheduler.c
0 → 100644
浏览文件 @
9b3c8ab0
#include <sched.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include "test.h"
#define TEST(c) ((!c) ? 1 : (t_error(#c" failed: %s" ,strerror(errno)),0))
int
main
(
int
argc
,
char
*
argv
[])
{
struct
sched_param
param
;
int
maxpri
;
maxpri
=
sched_get_priority_max
(
SCHED_FIFO
);
if
(
maxpri
==
-
1
)
{
perror
(
"get priority failed"
);
return
-
1
;
}
param
.
sched_priority
=
maxpri
;
TEST
(
sched_setscheduler
(
getpid
(),
SCHED_FIFO
,
&
param
));
TEST
(
!
(
sched_getscheduler
(
getpid
())
==
SCHED_FIFO
));
return
0
;
}
libc-test/src/functional/test_src_functional.gni
浏览文件 @
9b3c8ab0
...
...
@@ -58,6 +58,7 @@ functional_list = [
"strtol",
"strtold",
"swprintf",
"sched_setscheduler",
"tgmath",
"time",
"tls_align",
...
...
musl_src.gni
浏览文件 @
9b3c8ab0
...
...
@@ -1838,6 +1838,7 @@ musl_src_porting_file = [
"src/multibyte/wcsnrtombs.c",
"src/network/inet_legacy.c",
"src/passwd/getspnam_r.c",
"src/sched/sched_setscheduler.c",
"src/thread/arm/clone.s",
"src/thread/arm/syscall_cp.s",
]
porting/linux/user/src/sched/sched_setscheduler.c
0 → 100644
浏览文件 @
9b3c8ab0
#include <sched.h>
#include <errno.h>
#include "syscall.h"
#include "pthread_impl.h"
int
sched_setscheduler
(
pid_t
pid
,
int
sched
,
const
struct
sched_param
*
param
)
{
int
r
;
if
(
!
param
)
{
r
=
-
EINVAL
;
goto
exit
;
}
r
=
__syscall
(
SYS_sched_setscheduler
,
pid
,
sched
,
param
->
sched_priority
);
;
exit:
return
__syscall_ret
(
r
);
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录