Spawn (computing)


Spawn in computing refers to a function that loads and executes a new child process.
The current process may wait for the child to terminate or may continue to execute concurrent computing. Creating a new subprocess requires enough memory in which both the child process and the current program can execute.
There is a family of spawn functions in DOS, inherited by Microsoft Windows.
There is also a different family of spawn functions in an optional extension of the POSIX standards.

DOS/Windows spawn functions

The DOS/Windows spawn functions are inspired by Unix functions fork and exec; however, as these operating systems do not support fork, the spawn function was supplied as a replacement for the fork-exec combination. However, the spawn function, although it deals adequately with the most common use cases, lacks the full power of fork-exec, since after fork any process settings which will survive an exec may be changed. However, in most cases, this deficiency can be made up for by using the more low-level API.
In the,,, and calls, the child process inherits the environment of the parent. Files that are open when a call is made remain open in the child process.

Prototype

Function names

The base name of each function is, followed by one or more letters:
LetterNotes
Command-line arguments are passed individually to the function.
Command-line arguments are passed to the function as an array of pointers.
Uses the PATH argument variable to find the file to be executed.
An array of pointers to environment arguments is explicitly passed to the child process.

Mode

The argument determines the way the child is run. Values for are:
NameNotes
Overlays parent process with child, which destroys the parent. This has the same effect as the functions.
Suspends parent process until the child process has finished executing.
, Continues to execute calling process concurrently with new process.
The child is run in background without access to the console or keyboard. Calls to upon the new process will fail

Path

The argument specifies the filename of the program to execute. For and only, if the filename does not have a path and is not in the current directory, the PATH environment variable determines which directories to search for the file. The string pointed to by is the name of the program to run.
The command line passed to the spawned program is made up of the character strings, through, in the call. The accepted maximum combined length of these strings differs between compilers, ranging from 128 characters on Digital Mars to 1024 on Microsoft Visual C++ or
as much as memory permits, on DJGPP. The last argument after has to be a null pointer.

argv

The argument is an array of character pointers. The last pointer in the array must be null to indicate the end of the list.

envp

The,,, and calls allow the user to alter the child process's environment by passing a list of environment settings in the argument. This argument is an array of character pointers; each pointer points to a null-terminated string defining an environment variable. An environment variable has the form:
name=''value''
where is the variable name and is its value. The last pointer in the array is null. When the argument is null, the child inherits the parent's environment settings.
Under Microsoft Windows, the functions use to run the spawned process; and if this fails, an attempt is made to spawn a normal MS-DOS process. If a Windows application is spawned, the instance handle can be obtained using. It is possible to specify how the spawned program will be shown using the functions,, and.

Return values

The return value indicates the exit status of the spawned program. A value of zero indicates that the spawned program executed successfully. A positive value indicates that the spawned program executed, but was aborted or ended in error, the value returned is the exit status of the child process. A negative value indicates that the spawned program did not execute, and is set.
Under Microsoft Windows, returns the negated error code returned from for compatibility with the C run-time library. The following error codes may be encountered:
ValueNotes
-2 File not found
-3 Path not found
-11 Invalid file
-13 DOS 4. 0 application
-14 Unknown type

POSIX spawn functions

The and its sibling posix_spawnp can be used as replacements for fork and exec, but does not provide the same flexibility as using fork and exec separately. They may be efficient replacements for fork and exec, but their purpose is to provide process creation primitives in embedded environments where fork is not supported due to lack of dynamic address translation; however, may Unix-like operating systems with full dynamic address translation support also implement them.

History

The metaphor, i.e., to produce offspring as in egg deposition, had its early use in the VMS, now OpenVMS, operating system. In academia, there existed a lively debate between proponents of the Unix versus VMS's . This debate revived when the VMS spawning mechanism was inherited by Windows NT.