From: Christian Babeux Date: Wed, 28 Nov 2012 04:03:19 +0000 (-0500) Subject: Missing defined(__CYGWIN__) around getprocname wrapper X-Git-Url: http://git.lttng.org/?p=lttng-ust.git;a=commitdiff_plain;h=68f71a808863802927fe2a649304ae4f3e2b19cb Missing defined(__CYGWIN__) around getprocname wrapper --- diff --git a/liblttng-ust/compat.h b/liblttng-ust/compat.h index 2690a760..e54d25e1 100644 --- a/liblttng-ust/compat.h +++ b/liblttng-ust/compat.h @@ -34,7 +34,7 @@ void lttng_ust_getprocname(char *name) (void) prctl(PR_GET_NAME, (unsigned long) name, 0, 0, 0); } -#elif defined(__FreeBSD__) +#elif defined(__FreeBSD__) || defined(__CYGWIN__) #include #include