Missing defined(__CYGWIN__) around getprocname wrapper
authorChristian Babeux <christian.babeux@efficios.com>
Wed, 28 Nov 2012 04:03:19 +0000 (23:03 -0500)
committerChristian Babeux <christian.babeux@efficios.com>
Wed, 28 Nov 2012 04:03:19 +0000 (23:03 -0500)
liblttng-ust/compat.h

index 2690a7607ded20571f96cb79a417c9c3be0cb0e8..e54d25e142e3117e9b8378f3c89d303195397595 100644 (file)
@@ -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 <stdlib.h>
 #include <string.h>
 
This page took 0.02417 seconds and 4 git commands to generate.