gpt4 book ai didi

克隆和 CLONE_CHILD_CLEARTID 标志

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:08:39 27 4
gpt4 key购买 nike

我需要一些有关 clone() 系统调用的帮助。我试图将它与标志 CLONE_CHILD_CLEARTID 一起使用,但我看不到我指定为参数的字段值有任何变化。这是一个简单的代码:

int the_child(){
exit(0);
}
int main(int argc, char * argv[])
{
pid_t child_id = 99;
printf("child %p\n",child_id);

clone((int (*)(void *))the_child,
NULL,
CLONE_VM | CLONE_CHILD_CLEARTID | SIGCHLD,
NULL, NULL,NULL, child_id);

sleep(1);
printf("child %p\n",child_id);
}

但是当两个 printf 显示总是 99 时,我做错了什么?

最佳答案

您正在通过值传递 child_id。您应该将其作为指针传递。

This is where tid 的清除发生在内核中

/*
* We don't check the error code - if userspace has
* not set up a proper pointer then tough luck.
*/
put_user(0, tsk->clear_child_tid);

你能看到相同的评论警告吗? :)

See this blog他们通过 strace

跟踪 clone 系统调用的参数

编辑:根据我们在评论中的讨论添加,child_stack 对于 sys_clone 系统调用可以为零,但对于库函数 则不能克隆()

关于克隆和 CLONE_CHILD_CLEARTID 标志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9851973/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com