chore: switch back to upstream C-Thread-Pool lib (#119)

This commit is contained in:
Kévin Dunglas 2022-12-03 17:00:53 +01:00 committed by GitHub
parent 50a830927c
commit 229b4d6786
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -323,8 +323,8 @@ static void thread_hold(int sig_id) {
static void* thread_do(struct thread* thread_p){
/* Set thread name for profiling and debuging */
char thread_name[32] = {0};
snprintf(thread_name, 32, "thread-pool-%d", thread_p->id);
char thread_name[16] = {0};
snprintf(thread_name, 16, "thpool-%d", thread_p->id);
#if defined(__linux__)
/* Use prctl instead to prevent using _GNU_SOURCE flag and implicit declaration */

View File

@ -6,7 +6,7 @@
package frankenphp
//go:generate rm -Rf C-Thread-Pool/
//go:generate git clone --branch=feat/mac-os-compat --depth=1 git@github.com:dunglas/C-Thread-Pool.git
//go:generate git clone --depth=1 git@github.com:Pithikos/C-Thread-Pool.git
//go:generate rm -Rf C-Thread-Pool/.git C-Thread-Pool/.circleci C-Thread-Pool/docs C-Thread-Pool/tests
// #cgo CFLAGS: -Wall