“W”的助记符是什么?在 WIFEXITED、WEXITSTATUS 等中?
“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它只是与 W-aiting 函数相关,例如 waitpid系统调用。
It is simply related to W-aiting functions like the waitpid syscall.
我怀疑这是为了
等待
。这些常量用于wait
、waitpid
等函数提供的状态。I suspect it's for
wait
. These constants are for status provided bywait
,waitpid
, etc. functions.