找不到错误C

标签 c multithreading ipc mutex semaphore

我必须写两个线程。每个人都像这样打印 5 个从 1 到 100 的偶数/奇数(odd 在法语中是 impair,even 是 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。

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

enter image description here enter image description here enter image description here

最佳答案

你不是在等待两个线程都退出:

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

其中一个应该是 tidimp

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

相关文章:

c - 如何测试定点库?

c++ - 高效的 C++ 条件自旋锁是否可能?

c - 具有结构数组的共享内存

node.js - 多个nodejs应用程序之间的进程间通信

c - section 和 task openmp 的区别

c - 使用 unsigned long int 时产生垃圾值

c# - Task.Factory.StartNew() 是否保证使用调用线程之外的另一个线程?

perl - Perl中的system,exec和backticks之间有什么区别?

c - 在c中将大字符数组作为输入

python - 使用线程在后台加载内容