Changeset 3138 in kBuild for vendor/gnumake/current/w32/include/sub_proc.h
- Timestamp:
- Mar 12, 2018 7:32:29 PM (7 years ago)
- File:
-
- 1 edited
-
vendor/gnumake/current/w32/include/sub_proc.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current/w32/include/sub_proc.h
r2596 r3138 1 1 /* Definitions for Windows process invocation. 2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 3 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 2 Copyright (C) 1996-2016 Free Software Foundation, Inc. 4 3 This file is part of GNU Make. 5 4 … … 22 21 * Component Name: 23 22 * 24 * $Date : 2010/07/13 01:20:43$23 * $Date$ 25 24 * 26 * $Source : /sources/make/make/w32/include/sub_proc.h,v$25 * $Source$ 27 26 * 28 * $Id : sub_proc.h,v 1.12 2010/07/13 01:20:43 psmith Exp$27 * $Id$ 29 28 */ 30 29 … … 34 33 EXTERN_DECL(HANDLE process_init, (VOID_DECL)); 35 34 EXTERN_DECL(HANDLE process_init_fd, (HANDLE stdinh, HANDLE stdouth, 36 HANDLE stderrh));35 HANDLE stderrh)); 37 36 EXTERN_DECL(long process_begin, (HANDLE proc, char **argv, char **envp, 38 char *exec_path, char *as_user));37 char *exec_path, char *as_user)); 39 38 EXTERN_DECL(long process_pipe_io, (HANDLE proc, char *stdin_data, 40 int stdin_data_len));39 int stdin_data_len)); 41 40 EXTERN_DECL(long process_file_io, (HANDLE proc)); 42 41 EXTERN_DECL(void process_cleanup, (HANDLE proc)); 43 EXTERN_DECL(HANDLE process_wait_for_any, ( VOID_DECL));42 EXTERN_DECL(HANDLE process_wait_for_any, (int block, DWORD* pdwWaitStatus)); 44 43 EXTERN_DECL(void process_register, (HANDLE proc)); 45 EXTERN_DECL(HANDLE process_easy, (char** argv, char** env)); 44 EXTERN_DECL(HANDLE process_easy, (char** argv, char** env, 45 int outfd, int errfd)); 46 46 EXTERN_DECL(BOOL process_kill, (HANDLE proc, int signal)); 47 47 EXTERN_DECL(int process_used_slots, (VOID_DECL)); 48 EXTERN_DECL(DWORD process_set_handles, (HANDLE *handles)); 48 49 49 50 /* support routines */ … … 57 58 EXTERN_DECL(int process_errcnt, (HANDLE proc)); 58 59 EXTERN_DECL(void process_pipes, (HANDLE proc, int pipes[3])); 60 EXTERN_DECL(void process_noinherit, (int fildes)); 59 61 60 62 #endif
Note:
See TracChangeset
for help on using the changeset viewer.

