From d916e064d13c5d8826196652df5b379fd9047711 Mon Sep 17 00:00:00 2001 From: 0xJoeMama <0xjoemama@gmail.com> Date: Sun, 29 May 2022 16:11:27 +0300 Subject: [PATCH] Changed spaces to tabs --- src/linux/btop_collect.cpp | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/linux/btop_collect.cpp b/src/linux/btop_collect.cpp index d55c8b8..7fcd3d0 100644 --- a/src/linux/btop_collect.cpp +++ b/src/linux/btop_collect.cpp @@ -1259,21 +1259,21 @@ namespace Proc { int filter_found = 0; detail_container detailed; - static robin_hood::unordered_set kernels_procs{}; + static robin_hood::unordered_set kernels_procs{}; constexpr size_t KTHREADD = 2; - // Clearing the cache is used in the event of a pid wrap around. - // In that event processes that acquire old kernel pids would also be filtered out so we need to manually clean the cache every now and then. - static void clear_kernel_cache() { - static size_t latest_clear_time = 0; - - if (latest_clear_time >= 256) { - kernels_procs.clear(); - latest_clear_time = 0; - } - - latest_clear_time++; - } + // Clearing the cache is used in the event of a pid wrap around. + // In that event processes that acquire old kernel pids would also be filtered out so we need to manually clean the cache every now and then. + static void clear_kernel_cache() { + static size_t latest_clear_time = 0; + + if (latest_clear_time >= 256) { + kernels_procs.clear(); + latest_clear_time = 0; + } + + latest_clear_time++; + } //* Generate process tree list void _tree_gen(proc_info& cur_proc, vector& in_procs, vector>& out_procs, int cur_depth, const bool collapsed, const string& filter, bool found=false, const bool no_update=false, const bool should_filter=false) { @@ -1469,10 +1469,10 @@ namespace Proc { else { should_filter = true; - // First make sure kernel proc cache is cleared. - if (should_filter_kernel) { - clear_kernel_cache(); - } + // First make sure kernel proc cache is cleared. + if (should_filter_kernel) { + clear_kernel_cache(); + } auto totalMem = Mem::get_totalMem(); int totalMem_len = to_string(totalMem >> 10).size(); @@ -1658,10 +1658,10 @@ namespace Proc { pread.close(); if (should_filter_kernel && new_proc.ppid == KTHREADD) { - kernels_procs.emplace(new_proc.pid); + kernels_procs.emplace(new_proc.pid); current_procs.pop_back(); found.pop_back(); - continue; + continue; } if (x-offset < 24) continue;