Remove unused appid cpu channel

A similar channel is used in nosv model to report the appid of the
running task.
This commit is contained in:
Rodrigo Arias 2023-02-23 19:02:33 +01:00 committed by Rodrigo Arias Mallo
parent c8f4fd1b05
commit c55a92872b
2 changed files with 0 additions and 3 deletions

View File

@ -14,7 +14,6 @@ static const char *chan_name[] = {
[CPU_CHAN_NRUN] = "nrunning",
[CPU_CHAN_PID] = "pid_running",
[CPU_CHAN_TID] = "tid_running",
[CPU_CHAN_APPID] = "appid_running",
[CPU_CHAN_THRUN] = "th_running",
[CPU_CHAN_THACT] = "th_active",
};
@ -23,7 +22,6 @@ static int chan_type[] = {
[CPU_CHAN_PID] = 1,
[CPU_CHAN_TID] = 2,
[CPU_CHAN_NRUN] = 3,
[CPU_CHAN_APPID] = 5,
[CPU_CHAN_THRUN] = -1,
[CPU_CHAN_THACT] = -1,
};

View File

@ -20,7 +20,6 @@ enum cpu_chan {
CPU_CHAN_NRUN = 0,
CPU_CHAN_PID,
CPU_CHAN_TID,
CPU_CHAN_APPID,
CPU_CHAN_THRUN, /* gindex */
CPU_CHAN_THACT, /* gindex */
CPU_CHAN_MAX,