控制分叉进程的名称

发布于 2024-10-21 05:20:57 字数 233 浏览 1 评论 0原文

我想控制从 Perl 脚本派生的进程的名称 a 。理想情况下,它会是这样的:

./forker.pl
 | ...
 |
 | fork("forked.pl");
 |\
 | \
 |  `--------\
 |            \
forker.pl     forked.pl

...如 topps 所示。

这可能吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心房敞 2024-10-28 05:20:58

如果操作系统允许的话,

$0 = 'forked.pl';

If the OS permits it at all,

$0 = 'forked.pl';
迷途知返 2024-10-28 05:20:58

也许这个模块可以帮助您: 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文