当前位置: 首页>>代码示例>>C++>>正文


C++ ThreadPool::AllFree方法代码示例

本文整理汇总了C++中ThreadPool::AllFree方法的典型用法代码示例。如果您正苦于以下问题:C++ ThreadPool::AllFree方法的具体用法?C++ ThreadPool::AllFree怎么用?C++ ThreadPool::AllFree使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ThreadPool的用法示例。


在下文中一共展示了ThreadPool::AllFree方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: LogCount

// 直接依赖与全局变量是不好的做法,有时间的话可以改为传入参数的方式
void LogCount(vector<string>& datasrc, ThreadPool& threadpool)
{
    cout << "start logcount" << endl;
    time_t beginTime = time(0);
    vector<string>::iterator first = datasrc.begin();
    vector<string>::iterator last = datasrc.end();
    vector<string>::size_type size = datasrc.size();
    for (int i = 0; i < g_nThreadNum ; ++i)
    {
        ThreadArg* arg = new ThreadArg;
        arg->i = i;
        arg->pLogsCount = g_logscount;
        arg->first = first + size/g_nThreadNum * i;
        arg->last = first + size/g_nThreadNum * (i + 1);
        if (i == g_nThreadNum - 1)
            arg->last = last;

        cout << "第" << i << "个线程:" << "count [" << arg->first - first << "," << arg->last - first << "]" << endl;
        Work w;
        w.function = thread_fun_count;
        w.arg = (void *)arg;
        threadpool.AddWork(w);  // 向线程池添加任务
    }

    while(!threadpool.AllFree()) // 等待任务执行结束
        sleep(1);

    time_t countEndTime = time(0);
    cout << "thread count time: " << countEndTime - beginTime << endl;

    // g_logscount[n], 每次把 g_logscount[n -i - 1] 数据合入g_logscount[i];
    int needSumNum = g_nThreadNum;
    while (needSumNum > 1)
    {
        countSum(needSumNum, threadpool);

        if (needSumNum % 2 == 0)
            needSumNum = needSumNum / 2;
        else
            needSumNum = needSumNum / 2 + 1;
    }

    time_t threadSumTime  = time(0);
    cout << "thread count sum time : " << threadSumTime - countEndTime << endl;
 
}
开发者ID:wangjzh,项目名称:FindLogTop10k,代码行数:47,代码来源:test_topx.cpp

示例2: countSum

// 调用线程count
// 直接依赖与全局变量是不好的做法,有时间的话可以改为传入参数的方式
void countSum(int num, ThreadPool& threadpool)
{
    for (int i = 0; i < num/2; ++i)
    {
        ThreadArg2* arg = new ThreadArg2;
        arg->pLogsCount = g_logscount;
        arg->i = i;
        arg->j = num - i -1;
        Work w;
        w.function = thread_fun_sum;
        w.arg = arg;
        threadpool.AddWork(w);
    }

    while(!threadpool.AllFree())
        sleep(1);
}
开发者ID:wangjzh,项目名称:FindLogTop10k,代码行数:19,代码来源:test_topx.cpp


注:本文中的ThreadPool::AllFree方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。