Changeset 57 for trunk/src/gmake/job.h
- Timestamp:
- Nov 23, 2003, 11:38:39 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/job.h
r53 r57 58 58 #endif 59 59 char *sh_batch_file; /* Script file for shell commands */ 60 #ifdef MAKE_DLLSHELL 61 int status; /* Status of the job. 62 Another thread might set this. */ 63 char dllshell_done; /* Nonzero if executed thru a dll shell. 64 Another thread might set this. */ 65 #endif 60 66 unsigned int remote:1; /* Nonzero if executing remotely. */ 61 67 … … 75 81 #ifdef VMS 76 82 extern int child_execute_job PARAMS ((char *argv, struct child *child)); 77 #elif defined(__EMX__) 78 extern int child_execute_job PARAMS ((int stdin_fd, int stdout_fd, char **argv, char **envp ));83 #elif defined(__EMX__) || defined (MAKE_DLLSHELL) 84 extern int child_execute_job PARAMS ((int stdin_fd, int stdout_fd, char **argv, char **envp, struct child *child)); 79 85 #else 80 86 extern void child_execute_job PARAMS ((int stdin_fd, int stdout_fd, char **argv, char **envp));
Note:
See TracChangeset
for help on using the changeset viewer.