4 projects tagged "C language"
Gearmand is the job server component of Gearman. Gearman provides a generic framework to farm out work to other machines, dispatching function calls to machines that are better suited to do work, to do work in parallel, to balance the load of processing, or to call functions between languages.
ccglue is a complementary tool to cscope and ctags. The tool builds a cross-reference symbol database from cscope (and ctags) databases that can be used to display dependency-graphs (aka call-trees, code flow). Visualization can be done with the Vim CCTree plugin or the built-in stand-alone command-line tracer.
snappy-c is a C port of the google snappy compressor (http://code.google.com/p/snappy/). The compressor is very fast with a reasonable compression ratio. It is mainly useful for projects that cannot integrate C++ code, but want snappy. It also contains a command line tool, a benchmark, random test code, and a fuzz tester. The compression code supports scather-gather and linear buffers. The scather gather code is ifdefed (-DSG) and can be removed with unifdef.