開発者は、次の必要な結果を得るプロセスを作成できる Linux ツールを使用してプロジェクトに取り組んでいます。 ※処理に失敗した場合は負の値を返します。 ※処理が成功した場合、子プロセスには0を返し、親プロセスにはプロセスIDを送信します。 この操作の結果として生じるコンポーネントはどれですか?
正解:D
The operation described is characteristic of the fork() system call in Linux, which is used to create a new process. The fork() system call generates a new process by duplicating the calling (parent) process. If the fork() is successful, the PID of the child process is returned to the parent process, and a 0 value is returned to the child process. If unsuccessful, a negative value is returned2. References := * How to create a process in Linux? - Online Tutorials Library