# threadpool **Repository Path**: sjydafs/threadpool ## Basic Information - **Project Name**: threadpool - **Description**: No description available - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-18 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # threadpool thread_pool_simple.c : 简单的线程池 gcc -o thread_pool_simple thread_pool_simple.c -lpthread thread_pool_active.c : 复杂的线程池,可以直接复用的。 gcc -o thread_pool_active thread_pool_active.c -lpthread