Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了定义一个 upstart 进程,在 Ubuntu 12.04 系统启动时自动启动,我找到了一个有用的页面来描述如何创建myservice.conf文件。给定的例子有这一行
myservice.conf
expect fork
当进程恰好被分叉一次时使用。但是我的过程没有任何分叉。我可以省略这个“节/参数”吗?
是的,如果您的进程的主进程将保持驻留,您必须省略 expect。没有期望的默认行为是使用简单的waitpid调用来跟踪进程。
waitpid