From 68f71a808863802927fe2a649304ae4f3e2b19cb Mon Sep 17 00:00:00 2001 From: Christian Babeux Date: Tue, 27 Nov 2012 23:03:19 -0500 Subject: [PATCH] Missing defined(__CYGWIN__) around getprocname wrapper --- liblttng-ust/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1