0
votes
0answers
87 views

pthread_cond_signal() not waking thread [closed]

Here is my code pthread_mutex_lock(&mutex); while(!condition){ pthread_cond_wait(&variable,&mutex); } printf("\t Reach !\n"); //do things pthread_mutex_unlock(&mutex); ...
0
votes
2answers
164 views

Pooling memory in C - Memory Management

I am writing a cross platform shared library in C. The workflow of this library would be like, lib *handle = lib_init(); result = lib_do_work(handle); lib_destroy(handle); Usually, users will init ...
2
votes
2answers
322 views

How to loop select() to poll for data ad infinitum

#include <stdio.h> #include <unistd.h> #include <sys/time.h> #include <sys/types.h> int main () { char name[20]; fd_set input_set; struct timeval timeout; ...
1
vote
4answers
1k views

Memory pools implementation in C

I am looking for a good memory pool implementation in C. it should include the following: Anti fragmentation. Be super fast :) Ability to "bundle" several allocations from different sizes under ...