控制分叉进程的名称
我想控制从 Perl 脚本派生的进程的名称 a 。理想情况下,它会是这样的:
./forker.pl | ... | | fork("forked.pl"); |\ | \ | `--------\ | \ forker.pl forked.pl
...如 top
或 ps
所示。
这可能吗?
I'd like to have control over the name a of a process that is forked from a Perl script. Ideally it would go something like this:
./forker.pl | ... | | fork("forked.pl"); |\ | \ | `--------\ | \ forker.pl forked.pl
...as seen by by top
or ps
.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果操作系统允许的话,
If the OS permits it at all,
也许这个模块可以帮助您: http://metacpan.org/pod/Sys::Prctl .这是假设您使用的是 Linux 平台。
Perchance can this module help you: http://metacpan.org/pod/Sys::Prctl . This under the assumption that you are on a Linux platform.