Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
f48832ee
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看板
提交
f48832ee
编写于
5月 29, 2011
作者:
R
Rich Felker
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix backwards posix_spawn file action order
上级
dd45edb5
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
10 addition
and
6 deletion
+10
-6
src/process/fdop.h
src/process/fdop.h
+1
-1
src/process/posix_spawn.c
src/process/posix_spawn.c
+3
-2
src/process/posix_spawn_file_actions_addclose.c
src/process/posix_spawn_file_actions_addclose.c
+2
-1
src/process/posix_spawn_file_actions_adddup2.c
src/process/posix_spawn_file_actions_adddup2.c
+2
-1
src/process/posix_spawn_file_actions_addopen.c
src/process/posix_spawn_file_actions_addopen.c
+2
-1
未找到文件。
src/process/fdop.h
浏览文件 @
f48832ee
...
...
@@ -3,7 +3,7 @@
#define FDOP_OPEN 3
struct
fdop
{
struct
fdop
*
next
;
struct
fdop
*
next
,
*
prev
;
int
cmd
,
fd
,
newfd
,
oflag
;
mode_t
mode
;
char
path
[];
...
...
src/process/posix_spawn.c
浏览文件 @
f48832ee
...
...
@@ -51,10 +51,11 @@ int __posix_spawnx(pid_t *res, const char *path,
__syscall
(
SYS_setuid
,
__syscall
(
SYS_getuid
))
))
_exit
(
127
);
if
(
fa
)
{
if
(
fa
&&
fa
->
__actions
)
{
struct
fdop
*
op
;
int
ret
,
fd
;
for
(
op
=
fa
->
__actions
;
op
;
op
=
op
->
next
)
{
for
(
op
=
fa
->
__actions
;
op
->
next
;
op
=
op
->
next
);
for
(;
op
;
op
=
op
->
prev
)
{
switch
(
op
->
cmd
)
{
case
FDOP_CLOSE
:
ret
=
__syscall
(
SYS_close
,
op
->
fd
);
...
...
src/process/posix_spawn_file_actions_addclose.c
浏览文件 @
f48832ee
...
...
@@ -9,7 +9,8 @@ int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *fa, int fd)
if
(
!
op
)
return
ENOMEM
;
op
->
cmd
=
FDOP_CLOSE
;
op
->
fd
=
fd
;
op
->
next
=
fa
->
__actions
;
if
((
op
->
next
=
fa
->
__actions
))
op
->
next
->
prev
=
op
;
op
->
prev
=
0
;
fa
->
__actions
=
op
;
return
0
;
}
src/process/posix_spawn_file_actions_adddup2.c
浏览文件 @
f48832ee
...
...
@@ -10,7 +10,8 @@ int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *fa, int fd, int
op
->
cmd
=
FDOP_DUP2
;
op
->
fd
=
fd
;
op
->
newfd
=
newfd
;
op
->
next
=
fa
->
__actions
;
if
((
op
->
next
=
fa
->
__actions
))
op
->
next
->
prev
=
op
;
op
->
prev
=
0
;
fa
->
__actions
=
op
;
return
0
;
}
src/process/posix_spawn_file_actions_addopen.c
浏览文件 @
f48832ee
...
...
@@ -13,7 +13,8 @@ int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *fa, int fd, con
op
->
oflag
=
flags
;
op
->
mode
=
mode
;
strcpy
(
op
->
path
,
path
);
op
->
next
=
fa
->
__actions
;
if
((
op
->
next
=
fa
->
__actions
))
op
->
next
->
prev
=
op
;
op
->
prev
=
0
;
fa
->
__actions
=
op
;
return
0
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录