unplugged-system/device/mediatek/common/kernel-headers/linux/mmprofile_static_event.h

25 lines
451 B
C
Raw Normal View History

#ifndef __MMPROFILE_STATIC_EVENT_H__
#define __MMPROFILE_STATIC_EVENT_H__
typedef enum
{
MMP_InvalidEvent = 0,
MMP_RootEvent = 1,
// User defined static events begin
MMP_TouchPanelEvent,
// User defined static events end.
MMP_MaxStaticEvent
} MMP_StaticEvents;
#ifdef MMPROFILE_INTERNAL
typedef struct
{
MMP_StaticEvents event;
char* name;
MMP_StaticEvents parent;
} MMP_StaticEvent_t;
#endif
#endif