Make trace macros slightly more robust

Change-Id: I9544eb7b27fc1a971cabadd8d5b4b4b80678febf
This commit is contained in:
Tim Murray 2013-05-23 13:44:08 -07:00
parent 80d7fd86e0
commit d837969640

View File

@ -17,6 +17,8 @@
#ifndef ANDROID_TRACE_H
#define ANDROID_TRACE_H
#ifdef HAVE_ANDROID_OS
#include <fcntl.h>
#include <stdint.h>
#include <stdio.h>
@ -57,4 +59,11 @@ private:
}; // namespace android
#else // HAVE_ANDROID_OS
#define ATRACE_NAME(...)
#define ATRACE_CALL()
#endif // HAVE_ANDROID_OS
#endif // ANDROID_TRACE_H