“W”的助记符是什么?在 WIFEXITED、WEXITSTATUS 等中?

发布于 2024-12-21 22:35:17 字数 370 浏览 3 评论 0原文

“W”的助记符是什么,即“W”在以下宏中的含义:

int WIFEXITED (int status)
int WEXITSTATUS (int status)
int WIFSIGNALED (int status)
int WTERMSIG (int status)
int WCOREDUMP (int status)
int WIFSTOPPED (int status)
int WSTOPSIG (int status)

另请参阅 进程状态完成

What is mnemonic for "W" i.e. what does "W" mean in the following macros:

int WIFEXITED (int status)
int WEXITSTATUS (int status)
int WIFSIGNALED (int status)
int WTERMSIG (int status)
int WCOREDUMP (int status)
int WIFSTOPPED (int status)
int WSTOPSIG (int status)

Also see Process Status Completion.

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

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

发布评论

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

评论(2

你怎么敢 2024-12-28 22:35:17

它只是与 W-aiting 函数相关,例如 waitpid系统调用。

It is simply related to W-aiting functions like the waitpid syscall.

夏末的微笑 2024-12-28 22:35:17

我怀疑这是为了等待。这些常量用于 waitwaitpid 等函数提供的状态。

I suspect it's for wait. These constants are for status provided by wait, waitpid, etc. functions.

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