Hey, I've got just a small problem related to pthread_cond_timedwait. I've tried implementing it into this piece of code. I can't get the arguments right for timedwait, because I am not too sure what I'm doing. If anyone could point me in the right direction it would be much appreciated!

#include <time.h>
#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>

pthread_mutex_t timeLock = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t c = PTHREAD_COND_INITIALIZER;

int timeIndex = 0;
time_t times[100];

void print_time(time_t tt)
{
    char buf[80];
    struct tm* st = localtime(&tt);
    strftime(buf, 80, "%c", st);

    printf("Call me on: ");
    printf("%s\n", buf);
}

void *add_time(time_t tt){
    if(timeIndex == 100)
        timeIndex = 0;

    struct timespec ts;
    times[timeIndex] = tt;
    timeIndex++;

    ts.tv_sec = tt;
    print_time(tt); // print element
}

void * call_time()
{
    while(1)
    {
        const time_t c_time = time(NULL);
        int i;
        for(i = 0; i <= 100; i++)
        {
            if(c_time == times[i])
            {
                printf("\nWake me up!\n");
                times[i] = 0;
            }
        }   
    }

}

void * newTime()
{
        while(1)
        {
            time_t f_time;

            f_time = time(NULL); 

            srand ( time(NULL) );
            f_time += rand()%100;

            add_time(f_time);
            sleep(1);
        }
}

int main(void)
{
        pthread_t timeMet;
        pthread_t time;

        pthread_create(&time, NULL, newTime, NULL);
        pthread_create(&timeMet, NULL, call_time, NULL);

        pthread_join(time, NULL);
        pthread_join(timeMet, NULL);
        return 0;
}
link|improve this question

79% accept rate
If you can't tell me what you're trying to do, how can you expect to tell the computer what you're trying to do? – Dietrich Epp Dec 1 '11 at 2:09
If you run the code it is pretty self explanatory – Tom celic Dec 1 '11 at 12:25
1  
If you want help, you have to explain what you're trying to do. Running the code only tells me what the code does, not what you want it to do. – Dietrich Epp Dec 1 '11 at 16:27
sorry, I was trying to make the above code work the same but using pthread_cond_timedwait instead of a while loop constantly checking the array.. – Tom celic Dec 1 '11 at 17:16
@Tom cellic From what I can tell you don't want condition variables as much as alarm() or getitimer(). If you wanted to make a queue of generated times and signal when that queue is empty or full a condvar might come into the picture. – Duck Dec 1 '11 at 18:00
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.