【问题标题】:Why aren't my threads running?为什么我的线程没有运行?
【发布时间】:2013-05-08 23:50:48
【问题描述】:
// windows_procon.cpp : Defines the entry point for the console application.

#include "stdafx.h"
#include <stdlib.h>
#include <iostream>
#include <time.h>
#include <windows.h>
#include <process.h>
using namespace std;

HANDLE mutex;
HANDLE emptySlots;
HANDLE filledSlots;

#define BUFFER_SIZE 10

void *producer(void *);
void *consumer(void *);
int produceItem(void);
void printBuffer(void);

int buffer[BUFFER_SIZE];
int head = 0;
int tail = 0;

int _tmain(int argc, _TCHAR* argv[])
{
    DWORD prodThrdID, consThrdID;

    mutex = CreateMutex(NULL,FALSE,NULL);
    emptySlots = CreateSemaphore(NULL,BUFFER_SIZE,BUFFER_SIZE,NULL);
    filledSlots = CreateSemaphore(NULL,0,0,NULL);

    srand(time(NULL));

    _beginthreadex(NULL, 0, (unsigned int(__stdcall *)(void*))producer,
                    0, 0, (unsigned int *)&prodThrdID);
    _beginthreadex(NULL, 0, (unsigned int(__stdcall *)(void*))consumer,
                    0, 0, (unsigned int *)&consThrdID);

    return 0;
}

void *producer(void *n)
{
    int item;
    for(int i = 0; i <BUFFER_SIZE+5; i++)
    {
        WaitForSingleObject(emptySlots,INFINITE);
        WaitForSingleObject(mutex,INFINITE);

        item = produceItem();
        //printf("Producing");

        cout << "Producing: " << item << endl;
        //logfile << "Producing: "<< item << endl;
        //fprintf(logfile, "Producing: %d \n", item);
        buffer[head] = item;
        head = (head + 1) % BUFFER_SIZE;
        printBuffer();

        ReleaseMutex(mutex);
        ReleaseSemaphore(filledSlots,1, NULL);
    }
    return n;
}

void *consumer(void *n)
{
    for(int i = 0; i <BUFFER_SIZE+5; i++)
    {
        WaitForSingleObject(filledSlots,INFINITE);
        //Sleep(500);
        WaitForSingleObject(mutex,INFINITE);

        cout << "Consuming: " << buffer[tail] << endl;

        buffer[tail] = 0;
        tail = (tail + 1) % BUFFER_SIZE;
        printBuffer();

        ReleaseMutex(mutex);
        ReleaseSemaphore(emptySlots,1, NULL);
    }
    return n;
}

int produceItem(void)
{
    int x = (rand()%11 + 1);
    return x;
}

void printBuffer(void)
{
    for(int i = 0; i <BUFFER_SIZE; i++)
    {
        printf("%d ", buffer[i]);
    }
    printf("END \n");
}

我这里的程序应该是生产者-消费者问题的算法。我认为我的算法可以纠正我唯一的问题是我无法让线程正常运行。谁能告诉我是什么问题?

【问题讨论】:

    标签: c++ multithreading producer-consumer beginthreadex


    【解决方案1】:

    您需要等待您使用 _beginthreadex 创建的线程来完成它们的工作,因为您的程序将在创建它们后立即退出。我没有进一步研究你的逻辑。

    这是一个例子。

    hThread = (HANDLE)_beginthreadex( NULL, 0, &SecondThreadFunc, NULL, 0, &threadID );
    WaitForSingleObject( hThread, INFINITE );
    

    【讨论】:

    • 我该如何等待他们?我很困惑我是否使用 WaitForSingleObject?
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多