!28 add window tag

Merge pull request !28 from anderskov/bytrace_tag
This commit is contained in:
openharmony_ci
2022-01-07 03:20:44 +00:00
committed by Gitee
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -805,6 +805,7 @@ static void InitAllSupportTags()
g_tagMap["dsoftbus"] = { "dsoftbus", "Distributed Softbus", BYTRACE_TAG_DSOFTBUS, USER, {}};
g_tagMap["rpc"] = { "rpc", "RPC and IPC", BYTRACE_TAG_RPC, USER, {}};
g_tagMap["ark"] = { "ark", "ARK Module", BYTRACE_TAG_ARK, USER, {}};
g_tagMap["window"] = { "window", "Window Manager", BYTRACE_TAG_WINDOW_MANAGER, USER, {}};
g_tagMap["app"] = { "app", "APP Module", BYTRACE_TAG_APP, USER, {}};
g_tagMap["zbinder"] = { "zbinder", "Harmony binder communication", 0, KERNEL, {
{ "events/zbinder/enable" },
@@ -43,6 +43,7 @@ constexpr uint64_t BYTRACE_TAG_MSDP = (1ULL << 44); // Multimodal Sensor Data Pl
constexpr uint64_t BYTRACE_TAG_DSOFTBUS = (1ULL << 45); // Distributed Softbus tag.
constexpr uint64_t BYTRACE_TAG_RPC = (1ULL << 46); // RPC and IPC tag.
constexpr uint64_t BYTRACE_TAG_ARK = (1ULL << 47); // ARK tag.
constexpr uint64_t BYTRACE_TAG_WINDOW_MANAGER = (1ULL << 48); // window manager tag.
constexpr uint64_t BYTRACE_TAG_APP = (1ULL << 62); // App tag.
constexpr uint64_t BYTRACE_TAG_LAST = BYTRACE_TAG_APP;