diff options
author | Brad King <brad.king@kitware.com> | 2021-04-29 13:45:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-04-29 13:45:42 (GMT) |
commit | 11cadc3ef763f9968fc715abddf21c305094419a (patch) | |
tree | f21da094494d3d764ee3cb9f77663b013adf8538 /Source/kwsys | |
parent | 9edff7f43e6c679a4ce4b3c97432894cf98fb56c (diff) | |
parent | 18513fa1185f3f2b28f3c4de5ae3f69c9ec9e5cb (diff) | |
download | CMake-11cadc3ef763f9968fc715abddf21c305094419a.zip CMake-11cadc3ef763f9968fc715abddf21c305094419a.tar.gz CMake-11cadc3ef763f9968fc715abddf21c305094419a.tar.bz2 |
Merge branch 'upstream-KWSys' into update-kwsys
# By KWSys Upstream
* upstream-KWSys:
KWSys 2021-04-29 (5655d533)
Diffstat (limited to 'Source/kwsys')
-rw-r--r-- | Source/kwsys/ProcessUNIX.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c index e1e7721..5ae846a 100644 --- a/Source/kwsys/ProcessUNIX.c +++ b/Source/kwsys/ProcessUNIX.c @@ -122,6 +122,10 @@ static inline void kwsysProcess_usleep(unsigned int msec) /* The maximum amount to read from a pipe at a time. */ #define KWSYSPE_PIPE_BUFFER_SIZE 1024 +#if defined(__NVCOMPILER) +# pragma diag_suppress 550 /* variable set but never used (in FD_ZERO) */ +#endif + /* Keep track of times using a signed representation. Switch to the native (possibly unsigned) representation only when calling native functions. */ |