码迷,mamicode.com
首页 > 编程语言 > 详细

线程池的使用,未完待续

时间:2014-05-16 06:42:47      阅读:421      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   c   tar   ext   

#include "stdafx.h"

#include <Windows.h>
#include <iostream>
#include <process.h>

using namespace std;
INT i;
VOID CALLBACK Fun(PTP_CALLBACK_INSTANCE Instancd,PVOID Context,PTP_WORK Work){
    cout<<i++<<‘\t‘;
}

int main(){
 
  PTP_WORK pw;
  TP_CALLBACK_ENVIRON cbe;
  PTP_POOL pool;
  pool=CreateThreadpool(NULL);//创建线程池
  if(NULL==pool ){
    cout<<"createThreadpoll failed!"<<endl;

  return -1;
  }
  SetThreadpoolThreadMaximum(pool,100);
  SetThreadpoolThreadMinimum(pool,1);

  InitializeThreadpoolEnvironment(&cbe);
  SetThreadpoolCallbackPool(&cbe,pool);

 pw=CreateThreadpoolWork(Fun,NULL,&cbe);//创建工作项
  for(int i=0;i<10000;i++){
     
      SubmitThreadpoolWork(pw);//提交工作项  

      }

WaitForThreadpoolWorkCallbacks(pw, FALSE);//等待工作结束

 CloseThreadpoolWork(pw);

   system("pause");
   return 0;
}

 

下面是一些函数的用法和步骤,摘自:http://www.cnblogs.com/wz19860913/articles/1274214.html

PTP_POOL pThreadpool = CreateThreadpool(NULL); // 创建线程池

 

// 设置线程池线程数量上下限

SetThreadpoolThreadMinimum(pThreadpool, 2);

SetThreadpoolThreadMaximum(pThreadpool, 10);

 

// 初始化“回调函数环境”结构

TP_CALLBACK_ENVIRON tcbe;

InitializeThreadpoolEnvironment(&tcbe);

 

// 将该回调函数环境结构与线程池相关联

SetThreadpoolCallbackPool(&tcbe, pThreadpool);

 

// 创建清理组

PTP_CLEANUP_GROUP pTpcg= CreateThreadpoolCleanupGroup();

 

// 将回调函数环境结构与清理组关联起来

SetThreadpoolCallbackCleanupGroup(&tcbe, pTpcg, NULL);

 

// 现在可以创建一些项,提交给线程池

PTP_WORK pTpWork = CreateThreadpoolWork(, &tcbe);// 创建一个工作项

SubmitThreadpoolWork(pTpWork); // 提交工作项

PTP_TIMER pTpTimer = CreateThreadpoolTimer(, &tcbe);// 创建一个定时器项

SetThreadpoolTimer(pTpTimer, ); // 提交定时器

PTP_WAIT pTpWait = CreateThreadpoolWait(, &tcbe);// 创建一个等待项

SetThreadpoolWait(pTpWait, ); // 提交等待项

PTP_IO pTpIO = CreateThreadpoolIo(, &tcbe); // 创建一个IO项

StartThreadpoolIo(pTpIO); // 开始执行IO项

 

// 等待所有项完成

CloseThreadpoolCleanupGroupMembers(pTpcg, FALSE, NULL);

 

// 关闭各个项

CloseThreadpoolWork(pTpWork);

CloseThreadpoolTimer(pTpTimer);

CloseThreadpoolWait(pTpWait);

CloseThreadpoolIo(pTpIO);

 

CloseThreadpoolCleanupGroup(pTpcg); // 关闭线程池清理组

DestroyThreadpoolEnvironment(&tcbe); // 删除回调函数环境结构

CloseThreadpool(pThreadpool); // 关闭线程池

线程池的使用,未完待续,布布扣,bubuko.com

线程池的使用,未完待续

标签:des   style   blog   c   tar   ext   

原文地址:http://www.cnblogs.com/duyy/p/3726127.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!