X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=include%2Fusterr.h;h=86c9bf866a256dcff7f2b2ae6bf9893381db702a;hb=49c0da7df5e7bd32c06d69822e9b92120bf4d392;hp=c25348d74ce9d8869965c629d15c61d3dcf54950;hpb=7705281be801c16b35349f9ab17f67419cac1c34;p=lttng-ust.git diff --git a/include/usterr.h b/include/usterr.h index c25348d7..86c9bf86 100644 --- a/include/usterr.h +++ b/include/usterr.h @@ -87,10 +87,7 @@ static inline int ust_debug(void) #define ERR(fmt, args...) ERRMSG("Error: " fmt, ## args) #define BUG(fmt, args...) ERRMSG("BUG: " fmt, ## args) -#if !defined(__linux__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE)) -/* - * Version using XSI strerror_r. - */ +#if (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE) #define PERROR(call, args...)\ do { \ char buf[200] = "Error in strerror_r()"; \ @@ -98,9 +95,6 @@ static inline int ust_debug(void) ERRMSG("Error: " call ": %s", ## args, buf); \ } while(0); #else -/* - * Version using GNU strerror_r, for linux with appropriate defines. - */ #define PERROR(call, args...)\ do { \ char *buf; \