Skip to content
Snippets Groups Projects
  1. Jul 13, 2009
    • Brad King's avatar
      ENH: Provide unix-sytle command line parsing · e4e7f37c
      Brad King authored
      Add System_Parse_CommandForUnix to the KWSys System interface as a
      utility to parse a unix-style command line.  Move the existing
      implementation out of ProcessUNIX.  Add a flags argument reserved for
      future use in providing additional behavior.
      e4e7f37c
  2. Jun 12, 2009
  3. Jun 10, 2009
    • Brad King's avatar
      ENH: Teach KWSys Process basic VMS support · 48d72f12
      Brad King authored
      This achieves basic process execution on OpenVMS.  We use work-arounds
      for different fork()/exec() behavior and a lack of select().
      
      VMS emulates fork/exec using setjmp/longjmp to evaluate the child and
      parent return cases from fork.  Therefore both must be invoked from the
      same function.
      
      Since select() works only for sockets we use the BeOS-style polling
      implementation.  However, non-blocking reads on empty pipes cannot be
      distinguished easily from the last read on a closed pipe.  Therefore we
      identify end of data by an empty read after the child terminates.
      48d72f12
    • Brad King's avatar
      BUG: Fix non-select process impl without timeout · 6eac6c06
      Brad King authored
      This avoids use of an uninitialized value in the KWSys ProcessUNIX
      polling implementation when no timeout is given.
      6eac6c06
  4. Apr 23, 2009
  5. Mar 16, 2009
  6. Dec 15, 2008
  7. Sep 22, 2008
  8. Sep 15, 2008
  9. Aug 20, 2008
    • Brad King's avatar
      BUG: Handle case when select() lies · 83f5fa50
      Brad King authored
      According to "man select" on Linux it is possible that select() lies
      about data being ready on a pipe in some subtle cases.  We deal with
      this by switching to non-blocking i/o and checking for EAGAIN.  See
      issue #7180.
      83f5fa50
  10. May 13, 2008
  11. May 12, 2008
  12. Apr 02, 2008
  13. Jan 10, 2008
  14. Jun 27, 2007
  15. May 16, 2007
  16. May 03, 2007
  17. Dec 05, 2006
  18. Dec 04, 2006
  19. Oct 04, 2006
  20. Oct 03, 2006
  21. Aug 01, 2006
  22. Jun 15, 2006
  23. May 24, 2006
  24. May 23, 2006
  25. May 22, 2006
  26. May 21, 2006
  27. May 20, 2006
  28. Mar 08, 2006
  29. Dec 31, 2005
Loading