mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
fix bad return value when polling for windows messages
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@40000 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
39cc09e2ca
commit
f8f4bb51e3
4 changed files with 34 additions and 19 deletions
|
@ -282,6 +282,7 @@ static const NSMapTableValueCallBacks WatcherMapValueCallBacks =
|
|||
int wait_timeout;
|
||||
DWORD wait_return;
|
||||
BOOL immediate = NO;
|
||||
BOOL existingMessages = NO;
|
||||
|
||||
// Set timeout how much time should wait
|
||||
if (milliseconds >= 0)
|
||||
|
@ -404,10 +405,11 @@ static const NSMapTableValueCallBacks WatcherMapValueCallBacks =
|
|||
*/
|
||||
if ([self processAllWindowsMessages: num_winMsgs within: contexts] == YES)
|
||||
{
|
||||
wait_timeout = 0; // Processed something ... no need to wait.
|
||||
// Processed something ... no need to wait.
|
||||
wait_return = WAIT_OBJECT_0;
|
||||
existingMessages = YES;
|
||||
}
|
||||
|
||||
if (num_winMsgs > 0)
|
||||
else if (num_winMsgs > 0)
|
||||
{
|
||||
/*
|
||||
* Wait for signalled events or window messages.
|
||||
|
@ -465,7 +467,7 @@ static const NSMapTableValueCallBacks WatcherMapValueCallBacks =
|
|||
}
|
||||
|
||||
/*
|
||||
* Trigger any watchers which are set up to for every runloop wait.
|
||||
* Trigger any watchers which are set up to trigger for every runloop wait.
|
||||
*/
|
||||
count = GSIArrayCount(_trigger);
|
||||
completed = NO;
|
||||
|
@ -499,12 +501,17 @@ static const NSMapTableValueCallBacks WatcherMapValueCallBacks =
|
|||
GSPrivateNotifyASAP(mode);
|
||||
}
|
||||
|
||||
if (existingMessages)
|
||||
{
|
||||
NSDebugMLLog(@"NSRunLoop", @"processed windows messages");
|
||||
return YES;
|
||||
}
|
||||
|
||||
// if there are windows message
|
||||
if (wait_return == WAIT_OBJECT_0 + num_handles)
|
||||
{
|
||||
NSDebugMLLog(@"NSRunLoop", @"processing windows messages");
|
||||
[self processAllWindowsMessages: num_winMsgs within: contexts];
|
||||
return NO;
|
||||
return [self processAllWindowsMessages: num_winMsgs within: contexts];
|
||||
}
|
||||
|
||||
// if there aren't events
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue