[rtems-tools commit] covoar: Address kill() on Cygwin

Chris Johns chrisj at rtems.org
Sun Jun 24 01:20:36 UTC 2018


On 23/06/2018 01:06, Joel Sherrill wrote:
> Module:    rtems-tools
> Branch:    master
> Commit:    e86646c36c6783310227a0679973a9cbd93a9314
> Changeset: http://git.rtems.org/rtems-tools/commit/?id=e86646c36c6783310227a0679973a9cbd93a9314
> 
> Author:    Joel Sherrill <joel at rtems.org>
> Date:      Fri Jun 22 10:05:55 2018 -0500
> 
> covoar: Address kill() on Cygwin
> 
> ---
> 
>  tester/covoar/TraceConverter.cc | 2 +-
>  tester/covoar/covoar.cc         | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tester/covoar/TraceConverter.cc b/tester/covoar/TraceConverter.cc
> index 57ec6eb..7015e28 100644
> --- a/tester/covoar/TraceConverter.cc
> +++ b/tester/covoar/TraceConverter.cc
> @@ -24,7 +24,7 @@
>  #include "app_common.h"
>  #include "TargetFactory.h"
>  
> -#ifdef _WIN32
> +#if defined(_WIN32) || defined(__CYGWIN__)

I thought CYGWIN was POSIX so why is this needed?

Chris


More information about the devel mailing list