Skip to content

Commit

Permalink
[fuchsia] Disable FML_TRACE_COUNTER events to unblock roll (#8325)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanderso committed Mar 27, 2019
1 parent 4849658 commit ce9ea58
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fml/trace_event.h
Expand Up @@ -13,7 +13,9 @@

#include <trace/event.h>

#define FML_TRACE_COUNTER(a, b, c, d, args...) TRACE_COUNTER(a, b, c, d)
// TODO(DNO-448): This is disabled because the Fuchsia counter id json parsing
// only handles ints whereas this can produce ints or strings.
#define FML_TRACE_COUNTER(a, b, c, args...)
#define FML_TRACE_EVENT(a, b, args...) TRACE_DURATION(a, b)

#define TRACE_EVENT0(a, b) TRACE_DURATION(a, b)
Expand Down

0 comments on commit ce9ea58

Please sign in to comment.