diff options
author | Brad King <brad.king@kitware.com> | 2005-05-16 17:42:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-05-16 17:42:23 (GMT) |
commit | 26f82b064ce935e429dfcb3fd74bd277640e0b7e (patch) | |
tree | 9d8089bf2c8e500c54df76e66a8bc784c44d0006 /Source/kwsys/ProcessUNIX.c | |
parent | 1c95c08ccf6ddc33cf009fd54d0806ec007cd5fa (diff) | |
download | CMake-26f82b064ce935e429dfcb3fd74bd277640e0b7e.zip CMake-26f82b064ce935e429dfcb3fd74bd277640e0b7e.tar.gz CMake-26f82b064ce935e429dfcb3fd74bd277640e0b7e.tar.bz2 |
ENH: Removing previous debug code.
Diffstat (limited to 'Source/kwsys/ProcessUNIX.c')
-rw-r--r-- | Source/kwsys/ProcessUNIX.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c index 3d0efd4..96e6ea7 100644 --- a/Source/kwsys/ProcessUNIX.c +++ b/Source/kwsys/ProcessUNIX.c @@ -895,15 +895,6 @@ int kwsysProcess_WaitForData(kwsysProcess* cp, char** data, int* length, break; } -#if defined(__FreeBSD__) - if(timeout && getenv("TEST_PROCESS_4")) - { - fprintf(stderr, "select with timeout %ld %ld\n", - timeout->tv_sec, timeout->tv_usec); - fflush(stderr); - } -#endif - /* Run select to block until data are available. Repeat call until it is not interrupted. */ while(((numReady = select(max+1, &cp->PipeSet, 0, 0, timeout)) < 0) && |