Windows 线程池
如何从普通的 C
使用 Windows 线程池,或者是否需要 C++
?可以将它们与 MinGW 一起使用吗?
How is it possible to use Windows thread pools from plain C
, or is C++
required? Is it OK to use them with MinGW?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
线程池 API 是一个C API,它可以在C 或C++ 中使用。是的,可以将它们与 MinGW 一起使用 — MinGW 使用与 Microsoft 编译器使用的相同的 C 运行时库(与使用 GNU C 库的 Cygwin 不同)。
The Thread Pool API is a C API, it can be used either in C or C++. Yes, it's ok to use them with MinGW—MinGW uses the same C runtime library that Microsoft's compilers use (unlike Cygwin, which uses the GNU C library).