eina: disable log backtracking.

SVN revision: 70327
This commit is contained in:
Cedric BAIL 2012-04-19 09:24:04 +00:00
parent a59a972f8b
commit 03ad20b260
3 changed files with 2 additions and 6 deletions

View File

@ -250,8 +250,3 @@
* Add missing API eina_file_map_faulted() on Windows. Does nothing
for now.
2012-03-31 Cedric Bail
* Add environment variable EINA_LOG_BACKTRACE to trigger the display of a backtraced attached
to a log event.

View File

@ -20,7 +20,6 @@ Additions:
* EINA_C_ARRAY_LENGTH macro.
* Eina_Stringshare typedef.
* add eina_file_map_faulted() for windows port (was missing).
* Environment variable EINA_LOG_BACKTRACE trigger the display of backtrace attached to a log event.
Fixes:

View File

@ -28,10 +28,12 @@
#include <assert.h>
#include <errno.h>
#if 0
#if defined HAVE_EXECINFO_H && defined HAVE_BACKTRACE && defined HAVE_BACKTRACE_SYMBOLS
# include <execinfo.h>
# define EINA_LOG_BACKTRACE
#endif
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>