could please someone tell me what I am doing wrong here? It doesnt execute get_buffer at all.
void put_buffer(variables *vars) {
buffer_item item;
item = rand();
while( (in + 1) % max == out)
procure(&sem);
buffer[count] = item;
in = (in + 1) % max;
printf("producer %d\n", item);
vacate(&sem);
}
void get_buffer(variables *vars) {
buffer_item item;
while (in ==out)
procure(&sem);
item =buffer[out];
out = (out + 1) % max;
printf("consumer %d\n", item);
vacate(&sem);
}
main static inline int produce(void) {
static int i = 0; // persistent counter
i++; // "produce" the next element
dispatch_sync(dispatch_get_main_queue(),// print on the main thread
^{
put_buffer(&vars);
});
return i; // return element produced
}
static inline void consume(int i) {
dispatch_sync(dispatch_get_main_queue(),// print on the main thread
^{
get_buffer(&vars);
});
}