Minor fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2975 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1998-09-10 04:48:50 +00:00
parent c36d6e4310
commit 7fdaa4dd84
8 changed files with 54 additions and 22 deletions

View file

@ -196,6 +196,16 @@ static Class NSFileHandle_concrete_class = nil;
[self subclassResponsibility:_cmd];
}
- (void)waitForDataInBackgroundAndNotifyForModes:(NSArray*)modes
{
[self subclassResponsibility:_cmd];
}
- (void)waitForDataInBackgroundAndNotify
{
[self subclassResponsibility:_cmd];
}
// Seeking within a file
@ -250,6 +260,8 @@ NSString* NSFileHandleNotificationMonitorModes =
NSString* NSFileHandleConnectionAcceptedNotification =
@"NSFileHandleConnectionAcceptedNotification";
NSString* NSFileHandleDataAvailableNotification =
@"NSFileHandleDataAvailableNotification";
NSString* NSFileHandleReadCompletionNotification =
@"NSFileHandleReadCompletionNotification";
NSString* NSFileHandleReadToEndOfFileCompletionNotification =