When the windows CreateProcess() system calls creates a new process, the equivalent system call in UNIX is known as fork().
The fork system call is system used to creating a new process that is called child process.
The child process always runs concurrently with the process that makes the fork() call (parent process).
In conclusion, when the windows CreateProcess() system calls creates a new process, the equivalent system call in UNIX is known as fork().
Read more about fork system
brainly.com/question/26015241