Can the order of execution of fork() be determined?

前端 未结 5 1723
温柔的废话
温柔的废话 2020-11-28 13:33

I\'m working on an exercise on the textbook \"Operating System Concepts 7th Edition\", and I\'m a bit confused about how does fork() work. From my understanding

5条回答
  •  余生分开走
    2020-11-28 14:21

    The process which is selected by your system scheduler is chosen to run, not unlike any other application running on your operating system. The process spawned is treated like any other process where the scheduler assigns a priority or spot in queue or whatever the implementation is.

提交回复
热议问题