Norrow backtrace and setproctitle() to Linux+glibc.

Backtrace is a glibc extension, while setproctitle() implementation
depends on the memory layout and is partially libc dependent.
This commit is contained in:
antirez 2015-02-03 10:09:21 +01:00
parent 128c642d05
commit 45102a6f63

View File

@ -57,7 +57,7 @@
#endif
/* Test for backtrace() */
#if defined(__APPLE__) || defined(__linux__)
#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__))
#define HAVE_BACKTRACE 1
#endif
@ -118,7 +118,7 @@
#define USE_SETPROCTITLE
#endif
#if (defined __linux || defined __APPLE__)
#if ((defined __linux && defined(__GLIBC__)) || defined __APPLE__)
#define USE_SETPROCTITLE
#define INIT_SETPROCTITLE_REPLACEMENT
void spt_init(int argc, char *argv[]);