am 5f829205: am c1416647: Merge "Clean up internal libc logging."

* commit '5f8292050fc07f4bf9e70f37a807ad028e3cfc87':
  Clean up internal libc logging.
This commit is contained in:
Elliott Hughes
2013-03-15 16:36:37 -07:00
committed by Android Git Automerger
48 changed files with 185 additions and 455 deletions

View File

@@ -42,9 +42,9 @@
#define DEBUG 0
#if DEBUG
# include <logd.h>
# include "libc_logging.h"
# include <unistd.h> /* for gettid() */
# define D(...) __libc_android_log_print(ANDROID_LOG_DEBUG,"libc", __VA_ARGS__)
# define D(...) __libc_format_log(ANDROID_LOG_DEBUG,"libc", __VA_ARGS__)
#else
# define D(...) do{}while(0)
#endif