mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
fixup missing notification changes.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29087 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
925df9eb91
commit
a961de6c5d
3 changed files with 15 additions and 12 deletions
|
@ -1266,7 +1266,7 @@ static Class runLoopClass;
|
|||
if (ocurredEvents.lNetworkEvents & FD_CONNECT)
|
||||
{
|
||||
[self receivedEventWrite];
|
||||
GSPrivateNotifyASAP();
|
||||
GSPrivateNotifyASAP(mode);
|
||||
if (desc == INVALID_SOCKET)
|
||||
{
|
||||
M_UNLOCK(myLock);
|
||||
|
@ -1277,7 +1277,7 @@ static Class runLoopClass;
|
|||
if (ocurredEvents.lNetworkEvents & FD_READ)
|
||||
{
|
||||
[self receivedEventRead];
|
||||
GSPrivateNotifyASAP();
|
||||
GSPrivateNotifyASAP(mode);
|
||||
if (desc == INVALID_SOCKET)
|
||||
{
|
||||
M_UNLOCK(myLock);
|
||||
|
@ -1288,7 +1288,7 @@ static Class runLoopClass;
|
|||
if (ocurredEvents.lNetworkEvents & FD_OOB)
|
||||
{
|
||||
[self receivedEventRead];
|
||||
GSPrivateNotifyASAP();
|
||||
GSPrivateNotifyASAP(mode);
|
||||
if (desc == INVALID_SOCKET)
|
||||
{
|
||||
M_UNLOCK(myLock);
|
||||
|
@ -1300,7 +1300,7 @@ static Class runLoopClass;
|
|||
{
|
||||
readyToSend = YES;
|
||||
[self receivedEventWrite];
|
||||
GSPrivateNotifyASAP();
|
||||
GSPrivateNotifyASAP(mode);
|
||||
if (desc == INVALID_SOCKET)
|
||||
{
|
||||
M_UNLOCK(myLock);
|
||||
|
@ -1311,7 +1311,7 @@ static Class runLoopClass;
|
|||
if (ocurredEvents.lNetworkEvents & FD_CLOSE)
|
||||
{
|
||||
[self receivedEventRead];
|
||||
GSPrivateNotifyASAP();
|
||||
GSPrivateNotifyASAP(mode);
|
||||
if (desc == INVALID_SOCKET)
|
||||
{
|
||||
M_UNLOCK(myLock);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue