From 52bd1303bfe23baa08e8e1f918edada27a5951f3 Mon Sep 17 00:00:00 2001 From: xiejing Date: Wed, 24 Jul 2024 14:14:44 +0800 Subject: [PATCH] add check condition for __check_offcpu_parameter --- category/get_perf_info.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/category/get_perf_info.py b/category/get_perf_info.py index ccac1d9..51738d8 100644 --- a/category/get_perf_info.py +++ b/category/get_perf_info.py @@ -301,6 +301,9 @@ class OffCPU(): if not self.__check_offcpu_duration(): return False + if not self.__check_offcpu_command(): + return False + return true # hotspot main function class Hotspot(): -- Gitee