Skip to content

kya8/cpool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

cpool is a simple C thread pool library implemented with C11 <threads.h>.

A ring buffer is used as a bounded job queue. All worker threads are started on pool creation.

Future

cpool has a useful little feature somewhat akin to std::future in C++. When enqueuing a job, you can optionally receive a future handle associated with the job. This provides an easy way to wait on individual jobs, without the need for manual synchronization.

Example usage

#include "cpool.h"
#include <stdio.h>
#include <threads.h>
#include <stdlib.h>

static void sleep(void* arg)
{
    (void)arg;
    thrd_sleep(&(struct timespec) { .tv_sec = 1 }, NULL);
}

static void print_int(void* arg)
{
    thrd_sleep(&(struct timespec) { .tv_sec = 1 }, NULL);
    printf("%d\n", *(int*)arg);
    free(arg);
}

int main(void)
{
    cpool* tp = cpool_create(8, 8); // creates pool with 8 worker threads, job queue capacity 8.
    if (!tp) return EXIT_FAILURE;

    cpool_future* fut;
    cpool_enqueue(tp, sleep, NULL, &fut); // Receive a future handle

    if (fut) {
        puts("Waiting for future...");
        cpool_wait_future(fut);
    }
    puts("Waiting for pool...");
    cpool_wait(tp);
    puts("pool finished");

    for (int i = 0; i < 20; ++i) {
        int* arg = malloc(sizeof(arg));
        if (!arg) break;
        *arg = i;
        cpool_enqueue(tp, print_int, arg, NULL); // enqueue w/o using future.
                                                 // This will not incur extra overhead of future.
    }

    cpool_wait(tp);
    puts("pool finished");

    cpool_destroy(tp);
    puts("pool destroyed");
}

About

C11 thread pool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages