Skip to content
Snippets Groups Projects
  1. Sep 22, 2009
  2. Sep 14, 2009
  3. Sep 03, 2009
    • Brad King's avatar
      COMP: Silence useless Borland inlining warning · f3beae21
      Brad King authored
      KWSys tries not to force anything on source files that include its
      headers, but Borland warning 8027 leaves us no choice when we want to
      have inline function definitions.  This commit disables the warning for
      the RegularExpression header and any file that includes it.
      f3beae21
  4. Aug 31, 2009
    • Brad King's avatar
      Define kwsys_ios_binary macro for std::ios::binary · 9350c584
      Brad King authored
      The 'binary' openmode does not exist on all compilers.  We define macro
      <kwsys>_ios_binary, where <kwsys> is the KWSys namespace, to refer to
      std::ios::binary if it exists and 0 otherwise.  Sample usage:
      
        kwsys_ios::ifstream fin(fn, kwsys_ios::ios::in | kwsys_ios_binary);
      9350c584
  5. Aug 06, 2009
  6. Jul 27, 2009
  7. Jul 26, 2009
  8. Jul 24, 2009
  9. Jul 13, 2009
  10. Jul 09, 2009
  11. Jul 08, 2009
  12. Jun 25, 2009
  13. Jun 22, 2009
  14. Jun 12, 2009
  15. Jun 11, 2009
  16. Jun 10, 2009
    • Brad King's avatar
      ENH: Teach KWSys SystemTools about VMS paths · 1e406776
      Brad King authored
      This teaches ConvertToUnixSlashes to convert VMS paths into posix-style
      paths.  We also set the DECC$FILENAME_UNIX_ONLY feature so the process
      always sees posix-style paths on disk.
      1e406776
    • 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
    • Brad King's avatar
      COMP: Avoid String.c inclusion by Compaq templates · 7ecacbfa
      Brad King authored
      The Compaq compiler (on VMS) includes 'String.c' in source files that
      use the stl string while looking for template definitions.  This was the
      true cause of double-inclusion of the 'kwsysPrivate.h' header.  We work
      around the problem by conditionally compiling the entire source file on
      a condition only true when really building the source.
      7ecacbfa
  17. Jun 09, 2009
  18. Jun 05, 2009
  19. May 20, 2009
  20. May 19, 2009
  21. May 14, 2009
Loading