On 5/30/23 01:35, Fei Wu wrote:
+/* TBStatistic collection controls */ +enum TBStatsStatus { + TB_STATS_DISABLED = 0, + TB_STATS_RUNNING, + TB_STATS_PAUSED, + TB_STATS_STOPPED +};
I don't see what PAUSED or STOPPED actually do. As far as I can see, stats are either being collected or not: a boolean. r~