From bf51d9ed1a358180fa2519915d912e5736ff65c3 Mon Sep 17 00:00:00 2001 From: likepeng Date: Thu, 2 Jan 2025 20:49:36 +0800 Subject: [PATCH] fix test/actor_run_queue_test.cpp codestyle --- test/actor_run_queue_test.cpp | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/test/actor_run_queue_test.cpp b/test/actor_run_queue_test.cpp index ad03fd7..e235b1c 100644 --- a/test/actor_run_queue_test.cpp +++ b/test/actor_run_queue_test.cpp @@ -61,12 +61,16 @@ int main() { auto app = std::make_shared(); if (false == app->Init( lib_dir, - 4, // 线程池大小 - 2, // ConnectEvent池大小 - 10, // 接收队列最大值警告 - -1, // 接收队列最大值(全局) - 2 // 运行队列最大值(全局) - )) { + // 线程池大小 + 4, + // ConnectEvent池大小 + 2, + // 接收队列最大值警告 + 10, + // 接收队列最大值(全局) + -1, + // 运行队列最大值(全局) + 2)) { LOG(ERROR) << "Init failed"; return -1; }