Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Qt 中是否有一个包含 posix 信号库的信号类(用于捕获 SIGSEV、SIGABT 等的信号库)?我正在编写一个 qt 应用程序,如果没有必要,我宁愿避免混淆两个信号系统。谢谢。
Qt 的信号和posix 信号是完全不同的东西。它们之间唯一的“混淆”是在人脑中,因为它们碰巧用同一个词命名。没有合理的方法可以将两者“混淆”,除非您自己感到困惑。
Qt 包装 posix 信号没有多大意义,因为它们不是跨平台的。在 Windows 上最接近 posix 信号的是 AIO 回调,因为它们也是真正的异步 IIRC。