mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-12 08:38:47 +00:00
* configure.ac: Check sys/file.h and assume fileno() always exists. * output.h: Move output-specific content from job.h to output.h. * os.h (fd_inherit, fd_noinherit): New functions manage FD inheritance. * posixos.c (fd_inherit, fd_noinherit): Implement for POSIX systems. (jobserver_setup): Force jobserver FDs to not be inherited by default. (jobserver_pre_child): Enable inheritance in recursive invocations. (jobserver_post_child): Disable inheritance after recursive invocations. * w32/w32os.c (fd_inherit, fd_noinherit): Implement for W32 systems. * job.h (CLOSE_ON_EXEC): Remove macro in deference to new fd_noinherit. * function.c (func_shell_base): Convert CLOSE_ON_EXEC to fd_noinherit. * job.c (child_execute_job): Ditto. * output.c (setup_tmpfile): Ditto. * read.c (eval_makefile): Ditto, plus remove HAVE_FILENO check. * w32/include/sub_proc.h: Remove process_noinherit for fd_noinherit. * w32/subproc/sub_proc.c: Ditto.
64 lines
2.5 KiB
C
64 lines
2.5 KiB
C
/* Definitions for Windows process invocation.
|
|
Copyright (C) 1996-2016 Free Software Foundation, Inc.
|
|
This file is part of GNU Make.
|
|
|
|
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
|
|
Foundation; either version 3 of the License, or (at your option) any later
|
|
version.
|
|
|
|
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.
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef SUB_PROC_H
|
|
#define SUB_PROC_H
|
|
|
|
/*
|
|
* Component Name:
|
|
*
|
|
* $Date$
|
|
*
|
|
* $Source$
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#define EXTERN_DECL(entry, args) extern entry args
|
|
#define VOID_DECL void
|
|
|
|
EXTERN_DECL(HANDLE process_init, (VOID_DECL));
|
|
EXTERN_DECL(HANDLE process_init_fd, (HANDLE stdinh, HANDLE stdouth,
|
|
HANDLE stderrh));
|
|
EXTERN_DECL(long process_begin, (HANDLE proc, char **argv, char **envp,
|
|
char *exec_path, char *as_user));
|
|
EXTERN_DECL(long process_pipe_io, (HANDLE proc, char *stdin_data,
|
|
int stdin_data_len));
|
|
EXTERN_DECL(long process_file_io, (HANDLE proc));
|
|
EXTERN_DECL(void process_cleanup, (HANDLE proc));
|
|
EXTERN_DECL(HANDLE process_wait_for_any, (int block, DWORD* pdwWaitStatus));
|
|
EXTERN_DECL(void process_register, (HANDLE proc));
|
|
EXTERN_DECL(HANDLE process_easy, (char** argv, char** env,
|
|
int outfd, int errfd));
|
|
EXTERN_DECL(BOOL process_kill, (HANDLE proc, int signal));
|
|
EXTERN_DECL(BOOL process_table_full, (VOID_DECL));
|
|
EXTERN_DECL(int process_table_usable_size, (VOID_DECL));
|
|
EXTERN_DECL(int process_table_actual_size, (VOID_DECL));
|
|
EXTERN_DECL(DWORD process_set_handles, (HANDLE *handles));
|
|
EXTERN_DECL(DWORD process_wait_for_multiple_objects, (DWORD, const HANDLE*, BOOL, DWORD));
|
|
|
|
/* support routines */
|
|
EXTERN_DECL(long process_errno, (HANDLE proc));
|
|
EXTERN_DECL(long process_last_err, (HANDLE proc));
|
|
EXTERN_DECL(long process_exit_code, (HANDLE proc));
|
|
EXTERN_DECL(long process_signal, (HANDLE proc));
|
|
EXTERN_DECL(char * process_outbuf, (HANDLE proc));
|
|
EXTERN_DECL(char * process_errbuf, (HANDLE proc));
|
|
EXTERN_DECL(int process_outcnt, (HANDLE proc));
|
|
EXTERN_DECL(int process_errcnt, (HANDLE proc));
|
|
EXTERN_DECL(void process_pipes, (HANDLE proc, int pipes[3]));
|
|
|
|
#endif
|