Folyamatmeghívás
Folyamatmeghívás, often translated as process invocation or process call, refers to the mechanism by which one running process initiates the execution of another process. This is a fundamental concept in operating systems and concurrent programming. When a process invokes another, it essentially asks the operating system to create and start a new process. The original process, known as the parent process, can either wait for the child process to complete its execution before continuing (a synchronous call) or continue its own operations independently while the child process runs (an asynchronous call).
The most common way to achieve folyamatmeghívás on Unix-like systems is through the fork() and exec() system
The use of folyamatmeghívás is crucial for modularity, allowing complex tasks to be broken down into smaller,