xref: /aosp_15_r20/external/trace-cmd/lib/trace-cmd/include/private/trace-msg.h (revision 58e6ee5f017f6a8912852c892d18457e4bafb554)
1 /* SPDX-License-Identifier: LGPL-2.1 */
2 #ifndef _TRACE_MSG_H_
3 #define _TRACE_MSG_H_
4 
5 #include <stdbool.h>
6 
7 #define UDP_MAX_PACKET	(65536 - 20)
8 #define V3_MAGIC	"766679\0"
9 #define V3_CPU		"-1V3"
10 
11 #define V1_PROTOCOL	1
12 #define V3_PROTOCOL	3
13 
14 extern unsigned int page_size;
15 
16 #endif /* _TRACE_MSG_H_ */
17