]> git.ipfire.org Git - thirdparty/bash.git/blame - jobs.h
Imported from ../bash-2.05.tar.gz.
[thirdparty/bash.git] / jobs.h
CommitLineData
726f6388
JA
1/* jobs.h -- structures and stuff used by the jobs.c file. */
2
3/* Copyright (C) 1993 Free Software Foundation, Inc.
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
7 Bash is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License along
18 with Bash; see the file COPYING. If not, write to the Free Software
bb70624e 19 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
726f6388 20
ccc6cda3
JA
21#if !defined (_JOBS_H_)
22# define _JOBS_H_
726f6388
JA
23
24#include "quit.h"
25#include "siglist.h"
26
27#include "stdc.h"
28
d166f048
JA
29#include "posixwait.h"
30
726f6388 31/* Defines controlling the fashion in which jobs are listed. */
ccc6cda3
JA
32#define JLIST_STANDARD 0
33#define JLIST_LONG 1
34#define JLIST_PID_ONLY 2
35#define JLIST_CHANGED_ONLY 3
36#define JLIST_NONINTERACTIVE 4
37
726f6388
JA
38/* I looked it up. For pretty_print_job (). The real answer is 24. */
39#define LONGEST_SIGNAL_DESC 24
40
41/* We keep an array of jobs. Each entry in the array is a linked list
42 of processes that are piped together. The first process encountered is
43 the group leader. */
44
45/* Each child of the shell is remembered in a STRUCT PROCESS. A chain of
46 such structures is a pipeline. The chain is circular. */
47typedef struct process {
48 struct process *next; /* Next process in the pipeline. A circular chain. */
49 pid_t pid; /* Process ID. */
50 WAIT status; /* The status of this command as returned by wait. */
51 int running; /* Non-zero if this process is running. */
52 char *command; /* The particular program that is running. */
53} PROCESS;
54
55/* A description of a pipeline's state. */
56typedef enum { JRUNNING, JSTOPPED, JDEAD, JMIXED } JOB_STATE;
57#define JOBSTATE(job) (jobs[(job)]->state)
58
ccc6cda3
JA
59#define STOPPED(j) (jobs[(j)]->state == JSTOPPED)
60#define RUNNING(j) (jobs[(j)]->state == JRUNNING)
61#define DEADJOB(j) (jobs[(j)]->state == JDEAD)
62
726f6388
JA
63/* Values for the FLAGS field in the JOB struct below. */
64#define J_FOREGROUND 0x01 /* Non-zero if this is running in the foreground. */
65#define J_NOTIFIED 0x02 /* Non-zero if already notified about job state. */
66#define J_JOBCONTROL 0x04 /* Non-zero if this job started under job control. */
ccc6cda3
JA
67#define J_NOHUP 0x08 /* Don't send SIGHUP to job if shell gets SIGHUP. */
68
69#define IS_FOREGROUND(j) ((jobs[j]->flags & J_FOREGROUND) != 0)
70#define IS_NOTIFIED(j) ((jobs[j]->flags & J_NOTIFIED) != 0)
71#define IS_JOBCONTROL(j) ((jobs[j]->flags & J_JOBCONTROL) != 0)
726f6388
JA
72
73typedef struct job {
74 char *wd; /* The working directory at time of invocation. */
75 PROCESS *pipe; /* The pipeline of processes that make up this job. */
76 pid_t pgrp; /* The process ID of the process group (necessary). */
77 JOB_STATE state; /* The state that this job is in. */
78 int flags; /* Flags word: J_NOTIFIED, J_FOREGROUND, or J_JOBCONTROL. */
79#if defined (JOB_CONTROL)
80 COMMAND *deferred; /* Commands that will execute when this job is done. */
ccc6cda3
JA
81 VFunction *j_cleanup; /* Cleanup function to call when job marked JDEAD */
82 PTR_T cleanarg; /* Argument passed to (*j_cleanup)() */
726f6388
JA
83#endif /* JOB_CONTROL */
84} JOB;
85
86#define NO_JOB -1 /* An impossible job array index. */
87#define DUP_JOB -2 /* A possible return value for get_job_spec (). */
88
89/* A value which cannot be a process ID. */
90#define NO_PID (pid_t)-1
91
726f6388 92/* System calls. */
ccc6cda3 93#if !defined (HAVE_UNISTD_H)
726f6388 94extern pid_t fork (), getpid (), getpgrp ();
ccc6cda3 95#endif /* !HAVE_UNISTD_H */
726f6388
JA
96
97/* Stuff from the jobs.c file. */
bb70624e 98extern pid_t original_pgrp, shell_pgrp, pipeline_pgrp;
726f6388
JA
99extern pid_t last_made_pid, last_asynchronous_pid;
100extern int current_job, previous_job;
101extern int asynchronous_notification;
102extern JOB **jobs;
103extern int job_slots;
104
105extern void making_children __P((void));
106extern void stop_making_children __P((void));
107extern void cleanup_the_pipeline __P((void));
ccc6cda3
JA
108extern void save_pipeline __P((int));
109extern void restore_pipeline __P((int));
726f6388
JA
110extern void start_pipeline __P((void));
111extern int stop_pipeline __P((int, COMMAND *));
d166f048 112
cce855bc 113extern void delete_job __P((int, int));
ccc6cda3 114extern void nohup_job __P((int));
cce855bc
JA
115extern void delete_all_jobs __P((int));
116extern void nohup_all_jobs __P((int));
726f6388 117
bb70624e
JA
118extern int count_all_jobs __P((void));
119
726f6388
JA
120extern void terminate_current_pipeline __P((void));
121extern void terminate_stopped_jobs __P((void));
122extern void hangup_all_jobs __P((void));
123extern void kill_current_pipeline __P((void));
124
125#if defined (__STDC__) && defined (pid_t)
d166f048 126extern int get_job_by_pid __P((int, int));
726f6388
JA
127extern void describe_pid __P((int));
128#else
d166f048 129extern int get_job_by_pid __P((pid_t, int));
726f6388
JA
130extern void describe_pid __P((pid_t));
131#endif
132
ccc6cda3
JA
133extern void list_one_job __P((JOB *, int, int, int));
134extern void list_all_jobs __P((int));
135extern void list_stopped_jobs __P((int));
136extern void list_running_jobs __P((int));
726f6388
JA
137
138extern pid_t make_child __P((char *, int));
bb70624e 139
726f6388
JA
140extern int get_tty_state __P((void));
141extern int set_tty_state __P((void));
142
143extern int wait_for_single_pid __P((pid_t));
144extern void wait_for_background_pids __P((void));
145extern int wait_for __P((pid_t));
146extern int wait_for_job __P((int));
147
148extern void notify_and_cleanup __P((void));
149extern void reap_dead_jobs __P((void));
150extern int start_job __P((int, int));
151extern int kill_pid __P((pid_t, int, int));
d166f048 152extern int initialize_job_control __P((int));
726f6388 153extern void initialize_job_signals __P((void));
28ef6c31 154extern int give_terminal_to __P((pid_t, int));
726f6388 155
ccc6cda3
JA
156extern void set_sigwinch_handler __P((void));
157extern void unset_sigwinch_handler __P((void));
158
159extern void unfreeze_jobs_list __P((void));
726f6388
JA
160extern int set_job_control __P((int));
161extern void without_job_control __P((void));
162extern void end_job_control __P((void));
163extern void restart_job_control __P((void));
164extern void set_sigchld_handler __P((void));
ccc6cda3
JA
165extern void ignore_tty_job_signals __P((void));
166extern void default_tty_job_signals __P((void));
726f6388
JA
167
168#if defined (JOB_CONTROL)
169extern int job_control;
170#endif
171
ccc6cda3 172#endif /* _JOBS_H_ */