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:
Richard Frith-MacDonald 1999-03-02 08:58:30 +00:00
parent 2c66a6581f
commit fc772ee2e5
26 changed files with 1090 additions and 607 deletions

View file

@ -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