怎么样?在 bash 中实现?
& # disown the functions
众所周知, &
将任务置于后台,最重要的是否认该任务。
但它是如何实现的呢?
& # disown the functions
As we all know &
put a task into background, and most importantly disowns the task.
But how is it achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有
&
,shell 会分叉自身,在子进程中调用execve
来启动任务,并通过wait
或等待waitpid 让子进程终止(挂起 shell),除此之外不做任何其他事情。
当启动后台任务时,shell 再次分叉自身,调用 execve 在子进程中启动任务,但不会等待其终止,而是在任务启动后立即返回控制权。
Without a
&
, the shell forks itself, callsexecve
in the child process to start the task, and waits viawait
orwaitpid
for the child to terminate (which suspends the shell), not doing anything else than that.When starting a background task, the shell forks itself again, calls
execve
to start the task in the child process, but doesn't wait for its termination and rather return the control immediately after the start of the task.