找传奇、传世资源到传世资源站!

一个封装好的线程池及例子

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

接口简单易用,稳定可靠

ThreadPool├── Debug
│   ├── TestPool.pdb
│   └── ThreadPool.lib
├── Release
│   └── ThreadPool.lib
├── TestPool
│   ├── Debug
│   │   ├── CL.read.1.tlog
│   │   ├── CL.write.1.tlog
│   │   ├── TestPool.exe.embed.manifest
│   │   ├── TestPool.exe.embed.manifest.res
│   │   ├── TestPool.exe.intermediate.manifest
│   │   ├── TestPool.lastbuildstate
│   │   ├── TestPool.log
│   │   ├── TestPool.obj
│   │   ├── TestPool.pch
│   │   ├── TestPool.res
│   │   ├── TestPool.unsuccessfulbuild
│   │   ├── TestPool.write.1.tlog
│   │   ├── TestPoolDlg.obj
│   │   ├── TestPool_manifest.rc
│   │   ├── cl.command.1.tlog
│   │   ├── link-cvtres.read.1.tlog
│   │   ├── link-cvtres.write.1.tlog
│   │   ├── link.command.1.tlog
│   │   ├── link.read.1.tlog
│   │   ├── link.write.1.tlog
│   │   ├── rc.command.1.tlog
│   │   ├── rc.read.1.tlog
│   │   ├── rc.write.1.tlog
│   │   ├── stdafx.obj
│   │   ├── vc100.idb
│   │   └── vc100.pdb
│   ├── ReadMe.txt
│   ├── TestPool.aps
│   ├── TestPool.cpp
│   ├── TestPool.h
│   ├── TestPool.rc
│   ├── TestPool.vcxproj
│   ├── TestPool.vcxproj.filters
│   ├── TestPool.vcxproj.user
│   ├── TestPoolDlg.cpp
│   ├── TestPoolDlg.h
│   ├── res
│   │   ├── TestPool.ico
│   │   └── TestPool.rc2
│   ├── resource.h
│   ├── stdafx.cpp
│   ├── stdafx.h
│   ├── targetver.h
│   └── x64
│       ├── Debug
│       │   ├── CL.read.1.tlog
│       │   ├── CL.write.1.tlog
│       │   ├── TestPool.Build.CppClean.log
│       │   ├── TestPool.exe.embed.manifest
│       │   ├── TestPool.exe.embed.manifest.res
│       │   ├── TestPool.exe.intermediate.manifest
│       │   ├── TestPool.lastbuildstate
│       │   ├── TestPool.log
│       │   ├── TestPool.obj
│       │   ├── TestPool.pch
│       │   ├── TestPool.res
│       │   ├── TestPool.write.1.tlog
│       │   ├── TestPoolDlg.obj
│       │   ├── TestPool_manifest.rc
│       │   ├── cl.command.1.tlog
│       │   ├── link-cvtres.read.1.tlog
│       │   ├── link-cvtres.write.1.tlog
│       │   ├── link.command.1.tlog
│       │   ├── link.read.1.tlog
│       │   ├── link.write.1.tlog
│       │   ├── mt.command.1.tlog
│       │   ├── mt.read.1.tlog
│       │   ├── mt.write.1.tlog
│       │   ├── rc.command.1.tlog
│       │   ├── rc.read.1.tlog
│       │   ├── rc.write.1.tlog
│       │   ├── stdafx.obj
│       │   ├── vc100.idb
│       │   └── vc100.pdb
│       └── Release
│           ├── CL.read.1.tlog
│           ├── CL.write.1.tlog
│           ├── TestPool.Build.CppClean.log
│           ├── TestPool.exe.intermediate.manifest
│           ├── TestPool.lastbuildstate
│           ├── TestPool.log
│           ├── TestPool.obj
│           ├── TestPool.pch
│           ├── TestPool.res
│           ├── TestPool.write.1.tlog
│           ├── TestPoolDlg.obj
│           ├── cl.command.1.tlog
│           ├── link-cvtres.read.1.tlog
│           ├── link-cvtres.write.1.tlog
│           ├── link.command.1.tlog
│           ├── link.read.1.tlog
│           ├── link.write.1.tlog
│           ├── mt.command.1.tlog
│           ├── mt.read.1.tlog
│           ├── mt.write.1.tlog
│           ├── rc.command.1.tlog
│           ├── rc.read.1.tlog
│           ├── rc.write.1.tlog
│           ├── stdafx.obj
│           └── vc100.pdb
├── ThreadPool
│   ├── CriticalAutoRelease.cpp
│   ├── CriticalAutoRelease.h
│   ├── CriticalSectionForProtection.cpp
│   ├── CriticalSectionForProtection.h
│   ├── Debug
│   │   ├── CL.read.1.tlog
│   │   ├── CL.write.1.tlog
│   │   ├── CriticalAutoRelease.obj
│   │   ├── CriticalSectionForProtection.obj
│   │   ├── ErrorHandler.obj
│   │   ├── GenericCriticalSection.obj
│   │   ├── GenericEvent.obj
│   │   ├── GenericMutex.obj
│   │   ├── GenericReadWriteLock.obj
│   │   ├── GenericSemaphore.obj
│   │   ├── GenericThread.obj
│   │   ├── Lib-link.read.1.tlog
│   │   ├── Lib-link.write.1.tlog
│   │   ├── MutexAutoRelease.obj
│   │   ├── OSManager.obj
│   │   ├── RWAutoRelease.obj
│   │   ├── ThreadPool.Build.CppClean.log
│   │   ├── ThreadPool.lastbuildstate
│   │   ├── ThreadPool.log
│   │   ├── ThreadPool.obj
│   │   ├── ThreadPool.pch
│   │   ├── ThreadPool.write.1.tlog
│   │   ├── WaitList.obj
│   │   ├── WaitableObject.obj
│   │   ├── WaitableObjectAutoRelease.obj
│   │   ├── Win32Event.obj
│   │   ├── Win32Mutex.obj
│   │   ├── Win32ReadWriteLock.obj
│   │   ├── Win32Semaphore.obj
│   │   ├── Win32Thread.obj
│   │   ├── cl.command.1.tlog
│   │   ├── lib.command.1.tlog
│   │   ├── stdafx.obj
│   │   ├── vc100.idb
│   │   └── vc100.pdb
│   ├── ErrorHandler.cpp
│   ├── ErrorHandler.h
│   ├── ErrorHandlerMacros.h
│   ├── GenericCriticalSection.cpp
│   ├── GenericCriticalSection.h
│   ├── GenericEvent.cpp
│   ├── GenericEvent.h
│   ├── GenericMutex.cpp
│   ├── GenericMutex.h
│   ├── GenericReadWriteLock.cpp
│   ├── GenericReadWriteLock.h
│   ├── GenericSemaphore.cpp
│   ├── GenericSemaphore.h
│   ├── GenericThread.cpp
│   ├── GenericThread.h
│   ├── KomodiaSettings.h
│   ├── MutexAutoRelease.cpp
│   ├── MutexAutoRelease.h
│   ├── OSManager.cpp
│   ├── OSManager.h
│   ├── RWAutoRelease.cpp
│   ├── RWAutoRelease.h
│   ├── ReadMe.txt
│   ├── Release
│   │   ├── CL.read.1.tlog
│   │   ├── CL.write.1.tlog
│   │   ├── CriticalAutoRelease.obj
│   │   ├── CriticalSectionForProtection.obj
│   │   ├── ErrorHandler.obj
│   │   ├── GenericCriticalSection.obj
│   │   ├── GenericEvent.obj
│   │   ├── GenericMutex.obj
│   │   ├── GenericReadWriteLock.obj
│   │   ├── GenericSemaphore.obj
│   │   ├── GenericThread.obj
│   │   ├── Lib-link.read.1.tlog
│   │   ├── Lib-link.write.1.tlog
│   │   ├── MutexAutoRelease.obj
│   │   ├── OSManager.obj
│   │   ├── RWAutoRelease.obj
│   │   ├── ThreadPool.lastbuildstate
│   │   ├── ThreadPool.log
│   │   ├── ThreadPool.obj
│   │   ├── ThreadPool.pch
│   │   ├── ThreadPool.write.1.tlog
│   │   ├── WaitList.obj
│   │   ├── WaitableObject.obj
│   │   ├── WaitableObjectAutoRelease.obj
│   │   ├── Win32Event.obj
│   │   ├── Win32Mutex.obj
│   │   ├── Win32ReadWriteLock.obj
│   │   ├── Win32Semaphore.obj
│   │   ├── Win32Thread.obj
│   │   ├── cl.command.1.tlog
│   │   ├── lib.command.1.tlog
│   │   ├── stdafx.obj
│   │   └── vc100.pdb
│   ├── ThreadPool.cpp
│   ├── ThreadPool.h
│   ├── ThreadPool.vcxproj
│   ├── ThreadPool.vcxproj.filters
│   ├── ThreadPool.vcxproj.user
│   ├── WaitList.cpp
│   ├── WaitList.h
│   ├── WaitableObject.cpp
│   ├── WaitableObject.h
│   ├── WaitableObjectAutoRelease.cpp
│   ├── WaitableObjectAutoRelease.h
│   ├── Win32CriticalSection.cpp
│   ├── Win32CriticalSection.h
│   ├── Win32Event.cpp
│   ├── Win32Event.h
│   ├── Win32Mutex.cpp
│   ├── Win32Mutex.h
│   ├── Win32ReadWriteLock.cpp
│   ├── Win32ReadWriteLock.h
│   ├── Win32Semaphore.cpp
│   ├── Win32Semaphore.h
│   ├── Win32Thread.cpp
│   ├── Win32Thread.h
│   ├── stdafx.cpp
│   ├── stdafx.h
│   ├── targetver.h
│   └── x64
│       ├── Debug
│       │   ├── ThreadPool.Build.CppClean.log
│       │   └── ThreadPool.log
│       └── Release
│           ├── CL.read.1.tlog
│           ├── CL.write.1.tlog
│           ├── CriticalAutoRelease.obj
│           ├── CriticalSectionForProtection.obj
│           ├── ErrorHandler.obj
│           ├── GenericCriticalSection.obj
│           ├── GenericEvent.obj
│           ├── GenericMutex.obj
│           ├── GenericReadWriteLock.obj
│           ├── GenericSemaphore.obj
│           ├── GenericThread.obj
│           ├── Lib-link.read.1.tlog
│           ├── Lib-link.write.1.tlog
│           ├── MutexAutoRelease.obj
│           ├── OSManager.obj
│           ├── RWAutoRelease.obj
│           ├── ThreadPool.lastbuildstate
│           ├── ThreadPool.log
│           ├── ThreadPool.obj
│           ├── ThreadPool.pch
│           ├── ThreadPool.vcxprojResolveAssemblyReference.cache
│           ├── ThreadPool.write.1.tlog
│           ├── WaitList.obj
│           ├── WaitableObject.obj
│           ├── WaitableObjectAutoRelease.obj
│           ├── Win32CriticalSection.obj
│           ├── Win32Event.obj
│           ├── Win32Mutex.obj
│           ├── Win32ReadWriteLock.obj
│           ├── Win32Semaphore.obj
│           ├── Win32Thread.obj
│           ├── cl.command.1.tlog
│           ├── lib.command.1.tlog
│           ├── stdafx.obj
│           └── vc100.pdb
├── ThreadPool.sdf
├── ThreadPool.sln
├── ThreadPool.suo
├── ipch
│   ├── testpool-83ec7701
│   └── threadpool-359b2171
│       └── threadpool-5539a93c.ipch
└── x64
    ├── Debug
    │   ├── TestPool.exe
    │   ├── TestPool.ilk
    │   └── TestPool.pdb
    └── Release
        ├── TestPool.exe
        ├── TestPool.pdb
        └── ThreadPool.lib

20 directories, 267 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复