Tuesday 15 April 2014

c - How to port POSIX system calls fork() and wait() to Visual Studio 2010 express? -



c - How to port POSIX system calls fork() and wait() to Visual Studio 2010 express? -

is there anyway possible port or imitate unix/posix scheme calls, ie. fork() , wait(), visual studio 2010 express edition? i've tried integrating sua visual studio, however, installation due incompatibility processor. :(

any help appreciated.

it depends on how closely wish imitate wait , fork.

if fork used create process , not worried inheriting handles, semaphores etc, seek createprocess. there isn't in windows inherits setups parent.

one of parameters createprocess process information. equivalent wait waitforsingleobject first parameter handle of process (from process information) , sec parameter infinite.

both these function calls in windows.h header.

c visual-studio-2010 fork posix wait

No comments:

Post a Comment