1994-03-23 14:12:55 +00:00
|
|
|
/* Definitions for managing subprocesses in GNU Make.
|
2006-02-11 22:16:04 +00:00
|
|
|
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
|
2007-07-04 19:35:15 +00:00
|
|
|
2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
1992-04-21 07:16:26 +00:00
|
|
|
This file is part of GNU Make.
|
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
GNU Make is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
2007-07-04 19:35:15 +00:00
|
|
|
Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
1992-04-21 07:16:26 +00:00
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
1992-04-21 07:16:26 +00:00
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
2007-07-04 19:35:15 +00:00
|
|
|
this program. If not, see <http://www.gnu.org/licenses/>. */
|
1992-04-21 07:16:26 +00:00
|
|
|
|
1996-03-20 14:57:41 +00:00
|
|
|
#ifndef SEEN_JOB_H
|
|
|
|
#define SEEN_JOB_H
|
|
|
|
|
2003-03-24 23:14:15 +00:00
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
# include <fcntl.h>
|
|
|
|
#else
|
|
|
|
# include <sys/file.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* How to set close-on-exec for a file descriptor. */
|
|
|
|
|
|
|
|
#if !defined F_SETFD
|
|
|
|
# define CLOSE_ON_EXEC(_d)
|
|
|
|
#else
|
|
|
|
# ifndef FD_CLOEXEC
|
|
|
|
# define FD_CLOEXEC 1
|
|
|
|
# endif
|
|
|
|
# define CLOSE_ON_EXEC(_d) (void) fcntl ((_d), F_SETFD, FD_CLOEXEC)
|
|
|
|
#endif
|
|
|
|
|
1991-03-23 14:10:48 +00:00
|
|
|
/* Structure describing a running or dead child process. */
|
|
|
|
|
|
|
|
struct child
|
|
|
|
{
|
|
|
|
struct child *next; /* Link in the chain. */
|
|
|
|
|
|
|
|
struct file *file; /* File being remade. */
|
|
|
|
|
|
|
|
char **environment; /* Environment for commands. */
|
|
|
|
|
|
|
|
char **command_lines; /* Array of variable-expanded cmd lines. */
|
|
|
|
unsigned int command_line; /* Index into above. */
|
|
|
|
char *command_ptr; /* Ptr into command_lines[command_line]. */
|
|
|
|
|
1993-10-14 21:27:29 +00:00
|
|
|
pid_t pid; /* Child process's ID number. */
|
1996-03-20 14:57:41 +00:00
|
|
|
#ifdef VMS
|
|
|
|
int efn; /* Completion event flag number */
|
|
|
|
int cstatus; /* Completion status */
|
|
|
|
#endif
|
1999-04-25 04:30:55 +00:00
|
|
|
char *sh_batch_file; /* Script file for shell commands */
|
1991-03-23 14:10:48 +00:00
|
|
|
unsigned int remote:1; /* Nonzero if executing remotely. */
|
|
|
|
|
|
|
|
unsigned int noerror:1; /* Nonzero if commands contained a `-'. */
|
|
|
|
|
|
|
|
unsigned int good_stdin:1; /* Nonzero if this child has a good stdin. */
|
|
|
|
unsigned int deleted:1; /* Nonzero if targets have been deleted. */
|
2006-02-08 17:29:07 +00:00
|
|
|
unsigned int dontcare:1; /* Saved dontcare flag. */
|
1991-03-23 14:10:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct child *children;
|
|
|
|
|
2006-04-07 01:43:44 +00:00
|
|
|
void new_job (struct file *file);
|
|
|
|
void reap_children (int block, int err);
|
|
|
|
void start_waiting_jobs (void);
|
1991-03-23 14:10:48 +00:00
|
|
|
|
2007-10-10 13:22:21 +00:00
|
|
|
char **construct_command_argv (char *line, char **restp, struct file *file,
|
|
|
|
int cmd_flags, char** batch_file);
|
1996-03-20 14:57:41 +00:00
|
|
|
#ifdef VMS
|
2006-04-07 01:43:44 +00:00
|
|
|
int child_execute_job (char *argv, struct child *child);
|
2003-03-24 23:14:15 +00:00
|
|
|
#elif defined(__EMX__)
|
2006-04-07 01:43:44 +00:00
|
|
|
int child_execute_job (int stdin_fd, int stdout_fd, char **argv, char **envp);
|
1996-03-20 14:57:41 +00:00
|
|
|
#else
|
2006-04-07 01:43:44 +00:00
|
|
|
void child_execute_job (int stdin_fd, int stdout_fd, char **argv, char **envp);
|
1996-03-20 14:57:41 +00:00
|
|
|
#endif
|
1996-05-13 18:40:22 +00:00
|
|
|
#ifdef _AMIGA
|
2006-04-07 01:43:44 +00:00
|
|
|
void exec_command (char **argv);
|
2003-03-24 23:14:15 +00:00
|
|
|
#elif defined(__EMX__)
|
2006-04-07 01:43:44 +00:00
|
|
|
int exec_command (char **argv, char **envp);
|
1996-05-13 18:40:22 +00:00
|
|
|
#else
|
2006-04-07 01:43:44 +00:00
|
|
|
void exec_command (char **argv, char **envp);
|
1996-05-13 18:40:22 +00:00
|
|
|
#endif
|
1991-03-23 14:10:48 +00:00
|
|
|
|
|
|
|
extern unsigned int job_slots_used;
|
1993-02-01 21:03:32 +00:00
|
|
|
|
2006-04-07 01:43:44 +00:00
|
|
|
void block_sigs (void);
|
1993-02-01 21:03:32 +00:00
|
|
|
#ifdef POSIX
|
2006-04-07 01:43:44 +00:00
|
|
|
void unblock_sigs (void);
|
1993-02-01 21:03:32 +00:00
|
|
|
#else
|
|
|
|
#ifdef HAVE_SIGSETMASK
|
|
|
|
extern int fatal_signal_mask;
|
|
|
|
#define unblock_sigs() sigsetmask (0)
|
|
|
|
#else
|
|
|
|
#define unblock_sigs()
|
|
|
|
#endif
|
|
|
|
#endif
|
1996-03-20 14:57:41 +00:00
|
|
|
|
2005-05-03 13:57:20 +00:00
|
|
|
extern unsigned int jobserver_tokens;
|
|
|
|
|
1996-03-20 14:57:41 +00:00
|
|
|
#endif /* SEEN_JOB_H */
|