All pastes #699536 Raw Edit

Miscellany

public c v1 · immutable
#699536 ·published 2007-09-16 13:35 UTC
rendered paste body
void task_func(void *cookie){int err;err=0;clock_t time;        while(1){                printf("%f\n",clock());                err = rt_task_sleep(1000000000);                if(err<0){                        perror("rt_task_sleep(1000000000)");                        exit(EXIT_FAILURE);                }                printf("%s\n","testprint2");        }}