# threadpool **Repository Path**: rhack/threadpool ## Basic Information - **Project Name**: threadpool - **Description**: C线程池技术 - **Primary Language**: C - **License**: MulanPSL-1.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-01-30 - **Last Updated**: 2021-06-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # libthpool #### 介绍 C语言实现的弹性线程池动态库 动态库很简单,仅需make即可生成so动态库文件和a静态库文件,链接即可使用 借鉴参考: 《计算机程序高并发设计》 https://blog.csdn.net/qq_36359022/article/details/78796784 #### 使用方法 ``` $ make $ ./threadpool #执行测试demo程序 ```