Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
740 views

Code hot swapping in Erlang

I recently saw a video about Erlang on InfoQ, In that video one of the creators presented how to replace the behavior of a message loop. He was simply sending a message containing a lambda of the new ...
5
votes
2answers
206 views

Erlang message loops

How does message loops in erlang work, are they sync when it comes to processing messages? As far as I understand, the loop will start by "receive"ing a message and then perform something and hit ...
5
votes
1answer
241 views

Threading 101: What is a Dispatcher?

Once upon a time, I remembered this stuff by heart. Over time, my understanding has diluted and I mean to refresh it. As I recall, any so called single threaded application has two threads: a) the ...
4
votes
3answers
279 views

C# - Waiting for WinForms Message Loop

I have to write an C# API for registering global hotkeys. To receive the WM_HOTKEY message, I use a System.Windows.Forms.NativeWindow and run an own message loop with ...
3
votes
2answers
199 views

Cocoa message loop? (vs. windows message loop)

While trying to port my game engine to mac, I stumble upon one basic (but big) problem. On windows, my main code looks like this (very simplified): PeekMessage(...) // check for windows messages ...
2
votes
2answers
70 views

Implementing a Win32 message loop and creating Window object with P/Invoke

My main goal is to implement a proper message loop purely with P/Invoke calls that is able to handle USB HID events. Definitely its functionality should be identical with the following code that works ...
2
votes
2answers
690 views

How to programmatically exit from a second message loop?

I'm trying to create a second message loop to process/filter low level messages asynchronously in C#. It works by creating a hidden form, exposing it's Handle property to be hooked, and run a second ...
2
votes
4answers
2k views

Run Message Loop while waiting for WaitHandle

Is there any way to process all Windows messages while the UI thread is waiting on a WaitHandle or other threading primitive? I realize that it could create very messy reentrancy problems; I want to ...
1
vote
1answer
116 views

Win32: What is making my message loop work incorrectly in that example?

I recently ran into a situation where I wanted to use a modeless dialog in Win32's. Win32: Toolbar dialog seems to never get focus and causes the main window to process slow!? And I figured out that ...
0
votes
1answer
120 views

event SOCKET_DATA does not receive all messages in AS3

My AS3 client program does not receive all the data that was sent to it when sending a lot of messages. I do know its not my server causing this problem because all the messages are received and send ...
0
votes
2answers
129 views

Is it possible to use Windows Raw Input API without a window (ie from a console application)?

Is it possible to use Windows Raw Input API without a window (ie from a console application)? I've tried using RegisterRawInputDevices but my message loops doesn't seem to get any events from ...
0
votes
0answers
158 views

Simulate WPF Message Loop

I'd like to simulate the behavior of a root visual's message loop in WPF in code. By "root visual", I mean a topmost visual element that is responsible for handling all of the update calls to Measure, ...
0
votes
1answer
256 views

Win32 Message Loops: Quitting after window closes with GetMessage(&msg, NULL, 0, 0)?

If I have the following code below, how do I detect when the window has been closed, so I can quit? r never seems to get the value -1 0, and I need to process messages for the entire thread, not just ...
0
votes
4answers
691 views

Changing a Window's message loop thread

Recently I tried putting a window's message loop in its own thread, and I wondered why it never received any messages, but I have learned that Windows posts messages to the thread that created the ...
0
votes
1answer
548 views

Fireing Android Dialogs from another thread without Message Loop

In a SurfaceView, I'm dispatching new thread that draws on canvas within standard "LockCanvas-Draw-unlockCanvasAndPost" loop. (note that thread doesn't contains message loop). How to show Android ...
0
votes
2answers
129 views

Window moving and resizing interferes with MsgWaitForMultipleObjects

I have an application that message-loops using MsgWaitForMultipleObjects to catch additional events while pumping ui messages. It seems that as soon as a window is being moved or resized, ...
0
votes
3answers
317 views

AutoResetEvent and COM Objects

I've noticed that AutoResetEvent completely freezes the message loop (sometimes) when in the middle of a WaitOne() call, effectively even blocking the signal message. IE: (UI) New thread spawned ...
0
votes
1answer
453 views

WTL 8.0 _Module and Message Loop

I'm working on a WTL project, actually WTL 8.1 with VS2008. In many tutorials I've seen the usage of _Module global variable, e.g: _Module.AddMessageLoop. My current application creates a CMessageLoop ...