0

私は MinGW32 を持っており、Eclipse で pthread を使用して小さなコードを作成しています。コードは正常にコンパイルおよびリンクされますが、ゼロ以外の終了値で実行すると終了します。これに関する警告はありませんが、デバッグすると問題なく動作します。アドバイスをお願いします。

#include <iostream>
#include <pthread.h>

using namespace std;

pthread_mutex_t counter_mutex = PTHREAD_MUTEX_INITIALIZER;

void* increment(void* counter)
{

    cout << "increment" << endl;
    int* pcounter = (int*)counter;
    for(int i =0; i < 30000; ++i)
    {
        cout << "Inside for loop" << endl;

        pthread_mutex_lock(&counter_mutex);
        ++(*pcounter);
        pthread_mutex_unlock(&counter_mutex);
    }
}

int main()

{

    pthread_t arr[5];

    int counter =0;
    for(int i=0; i < 5; ++i)
    {
        cout << "Creating thread: " << i << endl;
        int rc = pthread_create(&arr[i], NULL, increment, (void*)&counter);
        if(rc != 0)
        {
            cout << "Error creating thread: " << rc << endl;
            exit(0);
        }
    }

    for(int i=0; i < 5 ; ++i)
    {
        pthread_join(arr[i], NULL);
    }

    cout << "result: " << counter << endl;

    return 0;
}
4

0 に答える 0