home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dmake40.zip / msdos / runargv.c < prev    next >
C/C++ Source or Header  |  1994-10-23  |  3KB  |  115 lines

  1. /* RCS      -- $Header: /u5/dvadura/src/public/dmake/src/msdos/RCS/runargv.c,v 1.1 1994/10/06 17:41:45 dvadura Exp $
  2. -- SYNOPSIS -- run a sub process.
  3. -- 
  4. -- DESCRIPTION
  5. --    Use spawn to run a subprocess.
  6. --
  7. -- AUTHOR
  8. --      Dennis Vadura, dvadura@watdragon.uwaterloo.ca
  9. --      CS DEPT, University of Waterloo, Waterloo, Ont., Canada
  10. --
  11. -- COPYRIGHT
  12. --      Copyright (c) 1992,1994 by Dennis Vadura.  All rights reserved.
  13. -- 
  14. --      This program is free software; you can redistribute it and/or
  15. --      modify it under the terms of the GNU General Public License
  16. --      (version 1), as published by the Free Software Foundation, and
  17. --      found in the file 'LICENSE' included with this distribution.
  18. -- 
  19. --      This program is distributed in the hope that it will be useful,
  20. --      but WITHOUT ANY WARRANTY; without even the implied warrant of
  21. --      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22. --      GNU General Public License for more details.
  23. -- 
  24. --      You should have received a copy of the GNU General Public License
  25. --      along with this program;  if not, write to the Free Software
  26. --      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  27. --
  28. -- LOG
  29. --     $Log: runargv.c,v $
  30.  * Revision 1.1  1994/10/06  17:41:45  dvadura
  31.  * dmake Release Version 4.0, Initial revision
  32.  *
  33. */
  34.  
  35. #include <process.h>
  36. #include <errno.h>
  37. #include "extern.h"
  38. #include "sysintf.h"
  39.  
  40. static int  _abort_flg = FALSE;
  41. static void _add_child ANSI((CELLPTR, int));
  42. static void _finished_child ANSI((int));
  43.  
  44. PUBLIC int
  45. runargv(target, ignore, group, last, shell, cmd)
  46. CELLPTR target;
  47. int     ignore;
  48. int    group;
  49. int    last;
  50. int    shell;
  51. char    *cmd;
  52. {
  53. #if ! defined(_MSC_VER)
  54.    extern char **environ;
  55. #endif
  56.    int status;
  57.    char **argv;
  58.  
  59.    argv = Pack_argv( group, shell, cmd );
  60.    _add_child(target, ignore);
  61.  
  62.    status = spawnvpe(P_WAIT, *argv, argv, environ);
  63.  
  64.    if( status == -1 ) Error("%s: %s", argv[0], strerror(errno));
  65.    _finished_child(status);
  66.    if( last && !Doing_bang ) Update_time_stamp( target );
  67.  
  68.    return( 0 );
  69. }
  70.  
  71.  
  72. PUBLIC void
  73. Clean_up_processes()
  74. {
  75.    _abort_flg = TRUE;
  76.    _finished_child(-1);
  77. }
  78.  
  79.  
  80. PUBLIC int
  81. Wait_for_child( abort_flg, pid )
  82. int abort_flg;
  83. int pid;
  84. {
  85.    return(1);
  86. }
  87.  
  88.  
  89. static int     _valid = -1;
  90. static CELLPTR _tg;
  91. static int     _ignore;
  92.  
  93. static void
  94. _add_child( target, ignore )
  95. CELLPTR target;
  96. int    ignore;
  97. {
  98.    _tg = target;
  99.    _ignore = ignore;
  100.    _valid = 0;
  101.  
  102.    Current_target = NIL(CELL);
  103. }
  104.  
  105.  
  106. static void
  107. _finished_child(status)
  108. int    status;
  109. {
  110.    if( _valid == -1 ) return;
  111.    Unlink_temp_files( _tg );
  112.    _valid = -1;
  113.    Handle_result( status, _ignore, _abort_flg, _tg );
  114. }
  115.