Skip to content

xuyoulai/libdynamic

 
 

Repository files navigation

libdynamic v2.3

https://coveralls.io/repos/github/fredrikwidlund/libdynamic/badge.svg?branch=master https://img.shields.io/lgtm/grade/cpp/g/fredrikwidlund/libdynamic.svg?logo=lgtm&logoWidth=18)

Documentation is available at http://libdynamic.readthedocs.io/en/latest/.

Description

libdynamic is a utility library for C that will give you dynamic data structures like buffers, lists, vectors, maps and strings. It also includes asynchronous worker pools, and a core event driven framework. It is used, for example, in conjunction with libreactor handling many millions of HTTP transactions daily for over 5 years.

Status

libdynamic currently is (and has been for many years) used in high concurrency and high performance production environments in a very robust manner.

Build

Build from the Git repository

Building from Git requires GNU Autotools (autoconf, automake, libtool).

git clone https://github.com/fredrikwidlund/libdynamic
cd libdynamic
./autogen.sh
./configure
make install

Build from release

wget https://github.com/fredrikwidlund/libdynamic/releases/download/v2.3.0/libdynamic-2.3.0.tar.gz
tar fxz libdynamic-2.3.0.tar.gz
cd libdynamic-2.3.0
./configure
make install

Running unit tests

The test suite requires cmocka and valgrind.

./configure
make check

Versioning

libdynamic follows the semantic versioning scheme.

Licensing

libdynamic is licensed under the MIT license.

About

High performance utility library for C

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 89.5%
  • Makefile 5.2%
  • C++ 4.0%
  • Other 1.3%