gpt4 book ai didi

linux - 调用系统调用fork()时使用了哪些函数

转载 作者:太空宇宙 更新时间:2023-11-04 12:02:28 25 4
gpt4 key购买 nike

我一直在网上搜索 fork.c 中使用了哪些函数以及以什么顺序使用,但是我似乎找不到答案。我所看到的只是 fork.c 所做的。我知道 fork.c 使用 _do_fork() 但我不知道它是如何到达那里的。

最佳答案

当进行fork() 系统调用时,它会通过复制调用进程来创建一个新进程。新进程将被称为进程。

查看这段代码的基本概述。

fork()->sys_fork()->do_fork()

sys_fork()
{
1. First it will validate the arguments.
2. Invoke do_fork.
3. return pid. (child pid)
}

do_fork()
{
1. First it will Allocate new address space.
2. Copy Segments of Caller address space to new address space.
3. allocate new task_struct instance. (PCB)
4. copy caller task_struct entries to new task_struct.
5. return.
}

成功时,父进程返回子进程的PID,子进程返回0。

注意:他们还有一些调用,但这两个是最重要的,如果您想了解更多信息,请查看内核源代码。如果仍然需要帮助,请告诉我。

关于linux - 调用系统调用fork()时使用了哪些函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51887404/

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