Giter Club home page Giter Club logo

colony's Introduction

Colony is a small library that implements a simple thread pool in C.

API
===

It's designed to be really simple to use. There are three functions:

    thread_pool *thread_pool_new(unsigned short n);

Creates a new thread pool with n threads.

    void thread_pool_run(thread_pool *, void (*func)(void *), void *data);

Runs a function on the thread pool, giving data as the argument. This function 
is thread-safe. It blocks until the function can be started in the pool. To 
reiterate, this library doesn't implement a queue.

    void thread_pool_free(thread_pool *pool);

Frees the thread pool. If there are functions running, it waits until they 
complete. If you call thread_pool_run during or after a call to this function
then you'll be on the business end of undefined behaviour.

Build instructions
==================

From inside the project directory:

$ mkdir build
$ cd build
$ cmake ../
$ make

colony's People

Contributors

danielwaterworth avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.