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);
         });
}
link|improve this question
In this snippet we dind't view where you call those functions, so how can tell you why "get_buffer" isn't execute ? Please, insert a better snippet of code – DonCallisto Sep 19 '11 at 8:06
updated now.. thanks.. – kanoz Sep 19 '11 at 8:10
Ok, this is the main ? But I see only two definition of function and no call to those... What I am missing ? – DonCallisto Sep 19 '11 at 8:14
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.