Remove unused cpu flush channel

This channel is now controlled by the ovni model.
This commit is contained in:
Rodrigo Arias 2023-02-20 15:35:52 +01:00 committed by Rodrigo Arias Mallo
parent b98ccfe3ad
commit 2ae702e3e4
2 changed files with 0 additions and 3 deletions

View File

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

View File

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