我必须写两个线程。每个都像这样打印从 1 到 100 的 5 个偶数/奇数(奇数是 impair 法语,偶数是 pair )。

even 2,4,6,8,10
odd 1,3,5,7,9
even 12,14,16,18,20
odd 13,15,17,19,21
etc...

我写了这段代码:
#include <stdio.h>
#include <semaphore.h>
#include <pthread.h>

#define maxi 100

pthread_mutex_t mutex;
sem_t p;
sem_t imp;
int tour = 0;

void *pair(void *arg);
void *impair(void *arg);

int main() {
  pthread_t tidp, tidimp;

  pthread_mutex_init(&mutex, NULL);
  sem_init(&p, 0, 1);
  sem_init(&imp, 0, 1);

  pthread_create(&tidp, NULL, pair, (void *)2);
  pthread_create(&tidimp, NULL, impair, (void *)1);

  pthread_join(tidp, NULL);
  pthread_join(tidp, NULL);

  sem_destroy(&imp);
  sem_destroy(&p);
  pthread_mutex_destroy(&mutex);

  return 0;
}

void *pair(void *arg) {
  int i = (int)arg;
  int j, l;

  // sleep(5);

  pthread_mutex_lock(&mutex);
  if (!tour) {
    tour = 1;
    pthread_mutex_unlock(&mutex);
    sem_wait(&imp);
  } else {
    pthread_mutex_unlock(&mutex);
  }

  for (l = 0; l < maxi; l += 10) {
    sem_wait(&p);
    printf(" Pair  ");

    pthread_mutex_lock(&mutex);
    for (j = 0; j < 10; j += 2) {
      printf(" %4d \t", j + i);
    }

    pthread_mutex_unlock(&mutex);

    printf("\n");
    sem_post(&imp);
    i += 10;
  }

  pthread_exit(NULL);
}

void *impair(void *arg) {
  int i = (int)arg;
  int j, l;

  pthread_mutex_lock(&mutex);
  if (!tour) {
    tour = 1;
    pthread_mutex_unlock(&mutex);
    sem_wait(&p);
  } else {
    pthread_mutex_unlock(&mutex);
  }

  for (l = 0; l < maxi; l += 10) {
    sem_wait(&imp);
    printf("Impair  ");

    pthread_mutex_lock(&mutex);
    for (j = 0; j < 10; j += 2) {
      printf(" %4d \t", j + i);
    }
    pthread_mutex_unlock(&mutex);

    printf("\n");
    sem_post(&p);
    i += 10;
  }

  pthread_exit(NULL);
}

我不明白的是,当我运行代码时,有时以 odd 开头,有时以 even 开头。更具体地说,当它以 odd 开头时一切正常,我得到了从 1 到 100 的所有数字,但是当它以 even 开头时,有时我只能得到 91,有时是 93,有时是 97。

谁能告诉我出了什么问题?下面的屏幕截图可能会有所帮助。

最佳答案

您不会等待两个线程退出:

pthread_join(tidp, NULL);
pthread_join(tidp, NULL);

其中之一应该是 tidimp

关于找不到错误 C,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27391578/

10-12 02:59