windows – Interix是否实现了fork()?

前端之家收集整理的这篇文章主要介绍了windows – Interix是否实现了fork()?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Unix上为Windows移植字典为HPC page for fork()编写了

There is no equivalent Windows API to
the Unix fork() or vfork(). The
Microsoft Subsystem for Unix-based
Applications (SUA or Interix) is a
Unix environment that has fork() and
vfork() properly implemented.

页面上还有一个示例源代码,它使用…标准的Win32 API CreateProcess函数.

我很困惑.
该示例是否应该使用fork()来说明由SUA / Interix实现的fork()语句?
如果fork()真正实现了它所包含的头文件和lib文件

您正在查看的页面是* nix to Windows移植指南.它没有告诉你如何使用fork()但是最接近的win32等效,CreateProcess.那里的页面记录了你应该使用的Win32功能而不是Unix功能.

您需要Unix的子系统和SUA SDK才能使用fork().在Windows上你会得到一个* nix环境,fork()将在通常的unistd.h库中,你将链接到libc.so(使用gcc)来使用它.

原文链接:https://www.f2er.com/windows/371842.html

猜你在找的Windows相关文章