Pthread threadpool?

Does pthread lib contain a threadpool implementation? or commonly used libs that people use /

+3
source share
4 answers

There is no official pthread threadpool library, although there are many other people libraries that can be found through Google.

+2
source

Thread pools require some form of cross-threading to send tasks that do not match the basic functions of streaming.

- ØMQ, ITC, IPC, TCP PGM, BSD API. ØMQ , , , .

+3

Jeanna Matthews . ? .

+3

POSIX stander trraed pthread_create:

int pthread_create(pthread_t *thread_id, const pthread_attr_t * attr, void *(*start_routine)(void*), void *arg);

, pthread_create, semaphore. .

+1

Source: https://habr.com/ru/post/1782883/


All Articles