Job control (Unix)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by ChrisGualtieri (talk | contribs) at 12:57, 16 December 2013 (→‎External links: Remove stub template(s). Page is start class or higher. Also check for and do General Fixes + Checkwiki fixes using AWB). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

On operating systems that support executing multiple processes in parallel or in series (batch processing), job control refers to the orchestration of multiple batch jobs.

Unix shell

When using Unix or related operating systems via a terminal, a user will initially only have a single process running, their login shell. Most tasks (directory listing, editing files, etc.) can easily be accomplished by letting the program take control of the terminal and returning control to the shell when the program exits; however, sometimes the user will wish to carry out a task in the background while using the terminal for another purpose. Job control is a facility developed to make this possible, by allowing the user to start programs in the background, send programs into the background, bring background processes into the foreground, and start and stop running programs. Processes under the influence of a job control facility are referred to as jobs.

History

Job control was first implemented in the C shell by Jim Kulp,[1] then at IIASA in Austria, making use of features of the 4.1BSD kernel. The Korn shell, developed at Bell Labs, adopted it and it was later incorporated into the SVR4 version of the Bourne shell, and exists in most modern Unix shells.

Implementation

  • Typically, the shell keeps a list of jobs in a job table. A job consists of all the members of a pipeline; thus all the processes constituting the job will be in the same process group.
  • A program can be started as a background task by appending &[2] to the command line; its output is directed to the terminal (potentially interleaved with other programs' output) but it cannot read from the terminal input.
  • A task running in the foreground can be stopped by typing the suspend character (Ctrl-Z); this sends SIGTSTP to the process group and returns control to the shell.
  • A stopped job can be resumed as a background job with the bg builtin or as the foreground job with fg; in either case the shell redirects I/O appropriately and sends SIGCONT to the process.
  • jobs will list the background jobs existing in the job table, along with their job number and job state (stopped or running).
  • The kill builtin (not /bin/kill) can signal jobs by job ID as well as by process ID: jobs specified by a job ID should be killed by prefixing "%".[3] Kill can send any signal to a job, however if the intent is to rid the system of the processes the signals SIGKILL and SIGTERM (the default), are probably the most applicable. A task running in the foreground can be permanently suspended by typing the kill character (Ctrl-C).
  • disown can be used to remove jobs from the job table, converting them from jobs into daemons so that they continue executing when the user logs out.

Job ID

A job ID is a token used to identify jobs to shell builtins. Job IDs begin with the % character; %n identifies job n, while %% identifies the current job. Other job IDs are specified by POSIX.[4]

See also

Further reading

  • Marshall Kirk McKusick and George V. Neville-Neil (2004-08-02). "FreeBSD Process Management: Process Groups and Sessions". The Design and Implementation of the FreeBSD Operating System. Addison Wesley. ISBN 0-201-70245-2. {{cite book}}: External link in |chapterurl= (help); Unknown parameter |chapterurl= ignored (|chapter-url= suggested) (help)

References

  1. ^ Foreword by Bill Joy in Anderson, Gail (1986). The UNIX C Shell Field Guide. Prentice-Hall. p. xvii. ISBN 0-13-937468-X. {{cite book}}: Unknown parameter |coauthors= ignored (|author= suggested) (help)
  2. ^ This section uses Bash syntax; other shells offer similar functionality under other names.
  3. ^ Code applicable for bash, and bash-compatible shells
  4. ^ IEEE Std 1003.1-2001, Section 3.203, Job Control Job ID

External links