About 2,090,000 results
Open links in new tab
  1. fork - forking () and CreateProcess () - Stack Overflow

    Dec 12, 2012 · CreateProcess is a Windows-only function, while fork is only on POSIX (e.g. Linux and Mac OSX) systems. The fork system call creates a new process and continue execution in …

  2. Windows-vs-Linux-fork ()/exec ()-semantics

    fork() creates new process as an almost identical copy of an existing one. exec() loads another executable into the new process and starts to execute it instead of the copied executable. In …

  3. [Answer]-compare linux fork () and windows createprocess () …

    If we comparing the Linux fork () and Windows CreateProcess () functions, there are several key differences to consider: Operating System: fork () is a system call specific to Unix-like …

  4. Process Creation and Deletions in Operating Systems

    Dec 31, 2024 · CreateProcess() in Windows combines the functionality of both UNIX’s fork() and exec(). It creates a new process with its own memory space rather than duplicating the parent …

  5. The Difference Between fork (), vfork (), exec () and clone ()

    Mar 18, 2024 · System calls provide an interface to the services made available by an operating system. The system calls fork (), vfork (), exec (), and clone () are all used to create and …

  6. Fork+Exec VS CreateProcess : r/osdev - Reddit

    Feb 23, 2021 · Windows NT uses CreateProcess (), which does some more complex stuff including creating a system object and loading a runtime image, but it boils down to having …

  7. Processes, forks and executions - part 2 - CFEngine

    Jul 28, 2022 · The UNIX-based operating systems provide the fork() system call 1 to create a clone of an existing process and the execve() system call to start executing a program in a …

  8. c++ - Linux fork function compared to Windows' CreateProcess

    Feb 17, 2014 · Windows doesn't have an equivilant to fork, instead the CreateProcess call only allows you to start a new process. There is an alternative to fork called clone which gives you …

  9. Would the Windows-equivalent of fork () be CreateProcess

    > Windows is a thread based OS, not process based, hence why the focus on thread performance, not on process creation. Which, somewhat ironically, leads NT to have worse …

  10. What is the Windows equivalent of fork? – Quick-Advisors.com

    Apr 14, 2019 · Forking and spawning are two different start methods for new processes. Fork is the default on Linux (it isn’t available on Windows), while Windows and MacOS use spawn by …

Refresh