-
For example, glibc implements functions such as fork within libc.so, but before NPTL was merged into glibc it constituted a separate library with its own linker flag argument.
Например, glibc реализует функции такие как fork() внутри libc.so, но перед тем, как NPTL объединится с glibc, она создаёт отдельную библиотеку со своим собственным флагом линковщика.
-
Let's unveil the mistery: the fork function returns '0' to the son process and the son's pid to the father.
Откроем тайну: функция fork возвращает '0' в дочерний процесс и pid дочернего процесса в родительский.
-
o Process Events Connector (2.6.15) o reports fork, exec, id change, and exit events for all processes to user-space.
о Process Events Connector (2.6.15) o следит за такими событиями как fork, exec, смена id, exit для всех процессов.
-
On Unix, Unix-like and other POSIX-compliant operating systems, popular system calls are open, read, write, close, wait, exec, fork, exit, and kill.
В Unix, Unix-like и других POSIX-совместимых операционных системах популярными системными вызовами являются: open, read, write, close, wait, exec, fork, exit и kill.
-
At line (07) we call the fork function which will return zero to the program executed in the son process and the pid of the son process to the father; the test is at line (08).
В строке (07) мы вызываем функцию fork, которая возвратит нуль в программу, выполняющуюся в дочернем процессе, и pid дочернего процесса в родительском; проверка производится в строке (08).