Changeset 503 for trunk/src/gmake/vmsjobs.c
- Timestamp:
- Sep 15, 2006, 7:09:38 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/vmsjobs.c
r282 r503 1 2 3 4 1 /* --------------- Moved here from job.c --------------- 5 2 This file must be #included in job.c, as it accesses static functions. 6 */ 3 4 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 5 2006 Free Software Foundation, Inc. 6 This file is part of GNU Make. 7 8 GNU Make is free software; you can redistribute it and/or modify it under the 9 terms of the GNU General Public License as published by the Free Software 10 Foundation; either version 2, or (at your option) any later version. 11 12 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY 13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 14 A PARTICULAR PURPOSE. See the GNU General Public License for more details. 15 16 You should have received a copy of the GNU General Public License along with 17 GNU Make; see the file COPYING. If not, write to the Free Software 18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ 19 20 #include <string.h> 21 #include <descrip.h> 22 #include <clidef.h> 23 24 extern char *vmsify PARAMS ((char *name, int type)); 7 25 8 26 static int vms_jobsefnmask = 0; 9 27 10 28 /* Wait for nchildren children to terminate */ 11 void29 static void 12 30 vmsWaitForChildren(int *status) 13 31 { … … 92 110 return p; 93 111 } 94 95 #include <descrip.h>96 #include <clidef.h>97 112 98 113 /* This is called as an AST when a child process dies (it won't get … … 198 213 199 214 /* local helpers to make ctrl+c and ctrl+y working, see below */ 215 #include <iodef.h> 200 216 #include <libclidef.h> 201 217 #include <ssdef.h>
Note:
See TracChangeset
for help on using the changeset viewer.