Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
834 views

Unhandled exception / Access violation writing location in a Mutex example

I'm working through an example of protecting a global double using mutexes, however I get the error - Unhandled exception at 0x77b6308e in Lab7.exe: 0xC0000005: Access violation writing ...
3
votes
1answer
421 views

What's the difference between WaitForMultipleObjects and boost::asio on multiple windows::basic_handle's?

I have a list of HANDLE's, controlled by a lot of different IO devices. What would be the (performance) difference between: A call to WaitForMultipleObjects on all these handles async_read on ...
2
votes
1answer
57 views

What are the benefits of using WaitForMultipleObjects instead of WaitForSingleObject in a loop?

I have a vector<HANDLE>. I want to wait for all of them to finish. I don't want to copy them over to an array. What are the benefits of doing so anyway and using WaitForMultpleObjects, rather ...
2
votes
1answer
1k views

CEvent-like behaviour with Boost.Thread

Problem in words: For my application, I have a class that reads from a serial port. It uses Windows primitives for COM port handling and had a thread for asynchronous reading. I'm trying to convert ...
1
vote
1answer
198 views

Blocking calls(wait, com calls) in STA thread

I have a windows service which creates 10+ threads which: do their job and then enter WaitForMultipleObjects state until they are resumed again .. each thread creates TDCOMConnection component calls ...
1
vote
1answer
369 views

MsgWaitForMultipleObjects sometimes returns WAIT_FAILED with no GetLastError value

I have a thread that creates COM objects that require a single threaded apartment. Originally, this thread's main function put it into a WaitForMultipleObjects loop. Evidently this is a problem, ...
0
votes
1answer
78 views

Simple multithreading mutex example is incorrect

i expect get numbers from 0 to 4 in random order but have some unsynchronized mess What i do wrong? #include <iostream> #include <windows.h> #include <process.h> using namespace ...
0
votes
1answer
249 views

WaitForMultipleObjects and several SetEvent()'s

I process some event, signaled by WFMO, and at this time it's signaled more N times. Would WFMO return once or N times?
0
votes
1answer
213 views

Chat server design of the “main” loop

I am writing on a small tcp chat server, but I am encountering some problems I can“t figure out how to solve "elegantly". Below is the code for my main loop: it does: 1.Initiates a vector with the ...
0
votes
2answers
372 views

Does Poco C++ library have a cross platform WaitForMultipleObjects() analog?

Based on this question I am going to use Poco::NamedEvent, but I need to wait for multiple events (like win32 WaitForMultipleObjects() Is there such a thing in poco? (searching the docs doesn't ...
0
votes
2answers
399 views

How port WaitForMultipleObjects to Java?

I have some code in C++ for Windows and I intend to port it to Java. But unfortunately it is not so easy as I thought. Could someone help me, please? Please, take a look at algorithm: HANDLE ...
0
votes
2answers
578 views

Listening on a comm port and stdin in Win32

I'm trying to write a small utility that maps stdin/stdout to a serial port (a command line terminal emulator of sorts) using the Win32 APIs. I have the following code, which I think ought to work, ...