KafkaLite
KafkaLite copied to clipboard
Would you like to add the configuration script "[AX_PTHREAD](https://www.gnu.org/software/autoconf-archive/ax_pthread.html)" to [your build specification](https://github.com/panyam/KafkaLite/blob/49c2afd07f7e0afe655d487518382b218f50981b/configure.ac#L26)?
Would you like to add more error handling for return values from functions like the following? - [malloc](http://pubs.opengroup.org/onlinepubs/9699919799/functions/malloc.html) ⇒ [kl_context_open](https://github.com/panyam/KafkaLite/blob/d900a09f482bb0bcf2f3f3f86035e344b4a33ad5/src/klcontext.c#L6) - [pthread_mutex_init](http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_init.html) ⇒ [kl_pthread_mutex_new](https://github.com/panyam/KafkaLite/blob/5ae821843140881faa529f94c877680aebce2dd9/src/klpthreadmutex.c#L5)
Currently mallocs and frees are used to allocate and release memory. However to allow for custom memory allocation schemes (eg pool based and so on), expose these via an allocator...