• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #undef TRACE_SYSTEM
3 #define TRACE_SYSTEM epoch
4 
5 #define TRACE_INCLUDE_PATH trace/hooks
6 
7 #if !defined(_TRACE_HOOK_EPOCH_H) || defined(TRACE_HEADER_MULTI_READ)
8 #define _TRACE_HOOK_EPOCH_H
9 
10 #include <linux/tracepoint.h>
11 #include <trace/hooks/vendor_hooks.h>
12 
13 DECLARE_HOOK(android_vh_show_suspend_epoch_val,
14 	TP_PROTO(u64 suspend_ns, u64 suspend_cycles),
15 	TP_ARGS(suspend_ns, suspend_cycles));
16 
17 DECLARE_HOOK(android_vh_show_resume_epoch_val,
18 	TP_PROTO(u64 resume_cycles),
19 	TP_ARGS(resume_cycles));
20 
21 /* macro versions of hooks are no longer required */
22 
23 #endif /* _TRACE_HOOK_EPOCH_H */
24 /* This part must be outside protection */
25 #include <trace/define_trace.h>
26