I know about Cygwin, and I know of its shortcomings. I also know about the slowness of fork, but not why on Earth it's not possible to work around that. I also know Cygwin requires a DLL. I also understand POSIX defines a whole environment (shell, etc...), that's not really what I care about here.

My question is asking if there is another way to tackle the problem. I see more and more of POSIX functionality being implemented by the MinGW projects, but there's no complete solution providing a full-blown (comparable to Linux/Mac/BSD implementation status) POSIX functionality.

The question really boils down to: Can the Win32 API (as of MSVC20??) be efficiently used to provide a complete POSIX layer over the Windows API?

Perhaps this will turn out to be a full libc that only taps into the OS library for low-level things like filesystem access, threads, and process control. But I don't know exactly what else POSIX consists of. I doubt a library can turn Win32 into a POSIX compliant entiity.

link|improve this question

The short answer: no, the Win32 API cannot be efficiently used to provide a complete POSIX layer for Windows. – Harry Johnston Nov 19 '11 at 6:04
feedback

2 Answers

up vote 3 down vote accepted

POSIX <> Win32.

If you're trying to write apps that target POSIX, why are you not using some variant of *N*X? If you prefer to run Windows, you can run Linux/BSD/whatever inside VirtualBox on your PC/laptop.

Windows used to have a POSIX compliant environment that ran in parallel to Win32, but it was discontinued due to lack of demand in NT4. Microsoft bought Interix and released Services For Unix (SFU). While it's still available for download, SFU 3.5 is now deprecated and no longer developed or supported.

As to why fork is so slow, you need to understand that fork isn't just "Create a new process", it's "create a new process (itself an expensive operation) which is a duplicate of the calling process along with all memory".

In *N*X, the forked process is mapped to the same memory pages as the parent (i.e. is pretty quick) and is only given new pages as and when the forked process tried to modify any shared pages. This is known as copy on write. This is largely achievable because in UNIX, there is no hard barrier between the parent and forked processes.

In NT, on the other hand, all processes are separated by a hardware barrier enforced by CPU hardware. In NT, if you want to spawn a child which has access to your process' memory and resources, you create a thread. Threads run within the memory space of the creating process and have access to all of the process' memory and resources.

This means that CygWin's 'fork' operation creates a new child process (in its own isolated memory space) and has to duplicate every page of memory in the parent process within the newly forked child. This can be a very costly operation.

Again, if you want to write POSIX code, do so in *N*X, not NT.

link|improve this answer
+1, but I don't think you're right about the relationship between parent and subprocesses being fundamentally different in the UNIX and Windows kernels. There's no inherent reason AFAIK that Windows couldn't provide fork() functionality, it's just that it would complicate process handling and has never been considered particularly useful. – Harry Johnston Nov 19 '11 at 5:59
Come to think of it, the Windows kernel used to support fork(), since it was available to the POSIX subsystem. – Harry Johnston Nov 19 '11 at 6:00
Windows & UNIX's process models are entirely different, resulting in some impedance mis-match between the two. fork() is a UNIX system call, and is only available in the old POSIX subsystem which was replaced by Interix/SFU (Services For UNIX). fork() is not available in Win32 - use CreateProcess() instead. Read this section of the Interix developer's guide for more details: technet.microsoft.com/en-us/library/bb497007.aspx (Especially the section titled "Creating a New Process"). – Richard Turner Dec 14 '11 at 0:11
Further: One of the biggest difference between UNIX' fork() and Win32's CreateProcess() is that fork() creates a process that is (essentially) a duplicate of the caller. CreateProcess() creates a new isolated process that loads and runs a specified exe which may be (and is usually) different from the code running in the parent process. – Richard Turner Dec 14 '11 at 0:14
Certainly the process models are different, but I don't believe that this is because "there is no hard barrier between the parent and forked processes" in Unix. – Harry Johnston Dec 14 '11 at 2:55
show 3 more comments
feedback

How about this

Most of the Unix API is implemented by the POSIX.DLL dynamically loaded (shared) library. Programs linked with POSIX.DLL run under the Win32 subsystem instead of the POSIX subsystem, so programs can freely intermix Unix and Win32 library calls.

From http://en.wikipedia.org/wiki/UWIN

The UWIN environment may be what you're looking for, but note that it is hosted at research.att.com, while UWIN is distributed under a liberal license it is not the GNU license. Also, as it is research for att, and only 2ndarily something that they are distributing for use, there are a lot of issues with documentation.

See more info see my write-up as the last answer for Regarding 'for' loop in Korn shell

Hmm main UWIN link is bad link in that post, try

http://www2.research.att.com/sw/download/

Also, You can look at

To get a sense of the features vs issues.

I hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.