diff options
author | KWSys Robot <kwrobot@kitware.com> | 2012-10-16 21:12:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-10-31 20:43:34 (GMT) |
commit | 7ae44db4b9a1b3b26f2d670135fc00324e24f348 (patch) | |
tree | c4ce9f6df920f1b4e947376d01cb4f0e03fe7829 /ProcessUNIX.c | |
parent | 5d0de36d2b2f420ab58841bbcd47c45fcdc4486e (diff) | |
download | CMake-7ae44db4b9a1b3b26f2d670135fc00324e24f348.zip CMake-7ae44db4b9a1b3b26f2d670135fc00324e24f348.tar.gz CMake-7ae44db4b9a1b3b26f2d670135fc00324e24f348.tar.bz2 |
KWSys 2012-10-16 (b7a97ac3)
Extract upstream KWSys using the following shell commands.
$ git archive --prefix=upstream-kwsys/ b7a97ac3 | tar x
$ git shortlog --no-merges --abbrev=8 --format='%h %s' bab53989..b7a97ac3
Brad King (3):
f9db7eab SystemInformation: Fix helper definition order
a1e83e42 SystemInformation: Expose helper functions only where needed
b7a97ac3 SystemInformation: Drop unused LoadLines on OS X
Burlen Loring (1):
6072e63b SystemInformation: support for resource limits
Sean McBride (2):
a536d833 ProcessUNIX: Suppress warning about uninteresting return code
00852081 SystemInformation: Fix sloppy use of sysctlbyname() API
Change-Id: Iae8af129a021435ef4e6daef255e312c99d7b773
Diffstat (limited to 'ProcessUNIX.c')
-rw-r--r-- | ProcessUNIX.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ProcessUNIX.c b/ProcessUNIX.c index 9c66a44..1992211 100644 --- a/ProcessUNIX.c +++ b/ProcessUNIX.c @@ -2732,6 +2732,7 @@ static void kwsysProcessesSignalHandler(int signum kwsysProcess* cp = kwsysProcesses.Processes[i]; kwsysProcess_ssize_t status= read(cp->PipeReadEnds[KWSYSPE_PIPE_SIGNAL], &buf, 1); + (void)status; status=write(cp->SignalPipe, &buf, 1); (void)status; } |