无限期地睡觉

发布于 2024-11-04 10:10:22 字数 88 浏览 0 评论 0原文

我想知道是否有一个语句可以用来让程序无限期地休眠(可能使用 sleep 函数??)。 (显然,我正在等待一个信号,该信号将在某个时间传递给该进程,并且它将唤醒它)

I was wondering if there is a statement which I can use to have a program sleep indefinitely (probably using sleep function??). (I am obviously doing this waiting for a signal that is going to be delivered at some time to this process and it will wake it up)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

霊感 2024-11-11 10:10:22

您想要pause()

编辑:最有可能需要使用pause()的情况实际上会导致竞争条件,所以更喜欢 sigsuspend()

You want pause().

EDIT: The most likely circumstances under which you might want to use pause() will actually cause a race condition, so prefer sigsuspend().

慕烟庭风 2024-11-11 10:10:22

在 Unix 上,请参阅 pausesigsuspend

On Unix, see either pause or sigsuspend.

失退 2024-11-11 10:10:22

在 Windows 上使用睡眠(INFINITE)

And on Windows use Sleep(INFINITE)

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