使用互斥锁时,stdout中没有输出

时间:2015-10-30 08:12:53

标签: c linux multithreading pthreads

任何人都知道如何记录数据?它有时打印一些东西,但大部分都没有。我不知道,哪里有一个bug ...也试过没有互斥,但它仍然无法正常工作。

非常感谢

使用gcc -o testtest.c -std=c99 -Wall -Wextra -pedantic -pthread

编译
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>

pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
void logger(const char *msg) {
    pthread_mutex_lock(&lock);
    printf("%s", msg);
    fflush(stdout);
    pthread_mutex_unlock(&lock);
}

void *A(void *arg) {
    fprintf(stderr, "AAA");
    logger("Inside thread A");
    return NULL;
}

void *B(void *arg) {
    fprintf(stderr, "BBB");
    logger("Inside thread A");
    return NULL;
}

pthread_t t_id[2];

int main() {
    int s1 = pthread_create(&(t_id[0]), NULL, &A, NULL);
    int s2 = pthread_create(&(t_id[1]), NULL, &B, NULL);

    if (s1 || s2) {
        perror("ERROR: Create thread");
        exit(2);
    }

    // EDIT; THIS WAS MISSING
    pthread_join(t_id[0], NULL);
    pthread_join(t_id[1], NULL);

    return 0;
}

1 个答案:

答案 0 :(得分:2)

迭代@πάνταῥεῖ所说的。

您需要加入线程,或等待所有线程在退出应用程序之前完成执行。

否则应用程序会在线程有机会打印消息之前退出。