- 论坛徽章:
- 0
|
本帖最后由 izualzhy 于 2011-11-07 16:02 编辑
例子代码主要实现producer线程生产(添加元素到链表),consumer线程消费(取出元素从链表)。按理说是LIFO才对,不过执行多次程序时有时会出现不符合LIFO的情况(都是在刚开始时出现)。
我仔细检查了下代码,应该是对的。与signal的位置没有关系。
结果有时是这样的:
Produce 160
Produce 93
Consume 160
谢谢!- #include <stdlib.h>
- #include <pthread.h>
- #include <stdio.h>
- struct msg {
- struct msg *next;
- int num;
- };
- volatile struct msg *head;
- pthread_cond_t hasProduct = PTHREAD_COND_INITIALIZER;
- pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
- void *consumer(void *p)
- {
- struct msg *mp;
- for(;;) {
- /*printf("consumer before lock......\n");*/
- pthread_mutex_lock(&lock);
- /*printf("consumer get locked : 0x%x\n",head);*/
- while (head==NULL) {
- /*if (head==NULL) {*/
- //条件受互斥锁保护?
- //用while不用if?
- printf("consumer entering wait......\n");
- pthread_cond_wait(&hasProduct,&lock);
- printf("consumer leaveing wait : %d......\n",head->num);
- }
- mp = head;
- head = mp->next;
- pthread_mutex_unlock(&lock);
- printf("Consume %d\n",mp->num);
- /*printf("Consume 0x%x,%d,0x%x\n", mp,mp->num,head);*/
- free(mp);
- sleep(rand()%5);
- }
- }
- void *producer(void *p)
- {
- /*printf("producer starting......\n");*/
- struct msg *mp;
- for(;;) {
- mp = malloc(sizeof(struct msg));
- mp->num = rand()%1000 + 1;
- /*printf("producer before lock......\n");*/
- pthread_mutex_lock(&lock);
- mp->next = head;
- head = mp;
- printf("Produce %d\n",mp->num);
- pthread_mutex_unlock(&lock);
- /*printf("producer before signal......\n");*/
- pthread_cond_signal(&hasProduct);
- //signal与lock位置无关
- sleep(rand()%5);
- }
- }
- int main(int argc, char *argv[])
- {
- pthread_t pid,cid;
- srand(time(NULL));
- pthread_create(&pid,NULL, producer, NULL);
- pthread_create(&cid,NULL, consumer, NULL);
- pthread_join(pid,NULL);
- pthread_join(cid,NULL);
- struct msg* mp = head;
- while (head!=NULL) {
- mp = head;
- head = head->next;
- printf("main thread: %d\n",mp->num);
- free(mp);
- }
- return 0;
- }
复制代码 |
|