Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
sem_post(&redact);
sem_post(&mutex);
}
- return NULL;
+ return NULL;
}
static void *redacteur(void *arg)
sleep(2);
sem_post(&redact);
}
- return NULL;
+ return NULL;
}
int main()
static void* fonction(void* args) {
printf("pid du thread fils = %d\n", getpid());
- while(1); // forever
+ while (1); // forever
return NULL;
}
printf("pid de main = %d\n", getpid());
pthread_create(&thread, NULL, &fonction, NULL);
- while(1); // forever
+ while (1); // forever
return 0;
}