开发者

Visual c++ thread with mutex not blocking

I'm developing with VC2005, and I'm having a problem with a thread.

I have a thread that dequeue data from a queue and send it. But this thread send one petition and have to wait for the answer to send a new petition (I want to put a timeout to prevent a infinite timeout).

I have a thread like this:

while (开发者_开发技巧true){
    dequeue()
    send()
    WaitForSingleObject(ptClass->getMutex(),10000);
}

But this WaitForSingleObject never stops... I've init event like this:

    HANDLE ghMutex = CreateEvent(NULL,FALSE, FALSE, "");

The idea is to block the thread to stop sending data, and when the answer comes, unblock this thread to send a new petition... Why never stops???

regards


This thread you have is waiting for the event to be SET to signaled so it can be woken up again. You have to set the event to signalled using SetEvent. Not sure where you'd do it, as I don't know your architecture, but that's what's missing.

The WaitForSingleObject is taking your thread out of CPU context, but it isn't being woken up again.

Your timeout of your Wait should be set to INFINITE if you want it to wait until the event has been set to signaled and you cannot guarantee that it will happen immediately.

You're not using a mutex, you're using a AutoResetEvent, but you have to set it!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜