Name: Anonymous 2006-09-30 0:23
YOU ARE NOW BLINKING MANUALLY
int blink_thread() {
while (1) {
blink();
}
}
int error;
pthread_t t;
error = pthread_create(&t,NULL,blink_thread,NULL);
if(error != 0) {
fprintf(stderr,"error creating thread (blink_thread): %s",strerror(error));
}