mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
Merged in 'dawn' CVS branch
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3827 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2c66a6581f
commit
fc772ee2e5
26 changed files with 1090 additions and 607 deletions
|
@ -47,6 +47,8 @@
|
|||
#include <Foundation/NSException.h>
|
||||
#include <Foundation/NSLock.h>
|
||||
#include <Foundation/NSThread.h>
|
||||
#include <Foundation/NSPort.h>
|
||||
#include <Foundation/NSPortMessage.h>
|
||||
#include <Foundation/NSNotification.h>
|
||||
|
||||
NSString* NSConnectionReplyMode = @"NSConnectionReplyMode";
|
||||
|
@ -184,6 +186,7 @@ static unsigned local_object_counter = 0;
|
|||
|
||||
@interface NSConnection (Private)
|
||||
- _superInit;
|
||||
- (void) handlePortMessage: (NSPortMessage*)msg;
|
||||
+ setDebug: (int)val;
|
||||
@end
|
||||
|
||||
|
@ -411,9 +414,14 @@ static int messages_received_count;
|
|||
return delegate;
|
||||
}
|
||||
|
||||
- (void) handlePortMessage: (NSPortMessage*)msg
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
- (BOOL) independantConversationQueueing
|
||||
{
|
||||
return independant_queueing;
|
||||
return independant_queueing;
|
||||
}
|
||||
|
||||
- (void) enableMultipleThreads
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue