Clairvoyant1332
Programmer
In UNIX environments, a process can be put in the background by first calling fork(), which creates a new process identical to the caller. The new process then calls setsid() or setpgrp() to detach from the terminal, and the parent process exits. This results in the command issued by the user coming right back to the shell, but now a background process is running.
What's the equivalent in Visual C++? Does it have to be set up as a service or is there a simpler way to do it?
What's the equivalent in Visual C++? Does it have to be set up as a service or is there a simpler way to do it?