child process - definizione. Che cos'è child process
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

Cosa (chi) è child process - definizione

COMPUTING PROCESS
SIGCHLD; SIGCLD; Process tree; Subprocess

child process         
<operating system> A process created by another process (the parent process). Each process may create many child processes but will have only one parent process, except for the very first process which has no parent. The first process, called init in Unix, is started by the kernel at boot time and never terminates. A child process inherits most of its attributes, such as open files, from its parent. In fact in Unix, a child process is created (using fork) as a copy of the parent. The chid process can then overlay itself with a different program (using exec) as required. (1997-11-22)
Child process         
A child process in computing is a process created by another process (the parent process). This technique pertains to multitasking operating systems, and is sometimes called a subprocess or traditionally a subtask.
Legal process         
  • Example of physical [[procedural records]] from the .
  • Example of electronic consultation of physical [[procedural records]] of the .
ANY FORMAL NOTICE OR WRIT BY A COURT OBTAINING JURISDICTION OVER A PERSON OR PROPERTY
Judicial process; Process (legal)
Legal process (sometimes simply process) is any formal notice or writ by a court obtaining jurisdiction over a person or property. Common forms of process include a summons, subpoena, mandate, and warrant.

Wikipedia

Child process

A child process in computing is a process created by another process (the parent process). This technique pertains to multitasking operating systems, and is sometimes called a subprocess or traditionally a subtask.

There are two major procedures for creating a child process: the fork system call (preferred in Unix-like systems and the POSIX standard) and the spawn (preferred in the modern (NT) kernel of Microsoft Windows, as well as in some historical operating systems).