代码拉取完成,页面将自动刷新
同步操作将从 ALONE_WORK/ZLToolKit 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
* Copyright (c) 2016 The ZLToolKit project authors. All Rights Reserved.
*
* This file is part of ZLToolKit(https://github.com/xiongziliang/ZLToolKit).
*
* Use of this source code is governed by MIT license that can be found in the
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
*/
#include <signal.h>
#include <atomic>
#include <iostream>
#include "Util/logger.h"
#include "Util/TimeTicker.h"
#include "Thread/ThreadPool.h"
using namespace std;
using namespace toolkit;
int main() {
signal(SIGINT,[](int ){
exit(0);
});
//初始化日志系统
Logger::Instance().add(std::make_shared<ConsoleChannel> ());
atomic_llong count(0);
ThreadPool pool(1,ThreadPool::PRIORITY_HIGHEST, false);
Ticker ticker;
for (int i = 0 ; i < 1000*10000;++i){
pool.async([&](){
if(++count >= 1000*10000){
InfoL << "执行1000万任务总共耗时:" << ticker.elapsedTime() << "ms";
}
});
}
InfoL << "1000万任务入队耗时:" << ticker.elapsedTime() << "ms" << endl;
uint64_t lastCount = 0 ,nowCount = 1;
ticker.resetTime();
//此处才开始启动线程
pool.start();
while (true){
sleep(1);
nowCount = count.load();
InfoL << "每秒执行任务数:" << nowCount - lastCount;
if(nowCount - lastCount == 0){
break;
}
lastCount = nowCount;
}
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。