What's a fork()
Nov 11, 2023 · 1 min read · The fork() is a system call that allows the creation of multiple processes, useful for dividing tasks. For example, a network server can listen to client requests and generate a new child process to handle each request, while still maintaining the ab...
Join discussion