optimizations and small fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@20507 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mguesdon 2004-12-31 14:33:16 +00:00
parent 8a7e040a2f
commit da7886eddf
97 changed files with 5460 additions and 2637 deletions

View file

@ -39,10 +39,13 @@
NSRunLoop* _currentRunLoop;
NSDate* _runLoopDate;
BOOL _isMultiThread;
NSDate* _creationDate;
NSDate* _runDate;
NSDate* _dispatchRequestDate;
NSDate* _sendResponseDate;
GSWTime _requestTS;
GSWTime _creationTS;
GSWTime _runTS;
GSWTime _beginDispatchRequestTS;
GSWTime _endDispatchRequestTS;
GSWTime _sendResponseTS;
NSString* _remoteAddress;
int _requestNamingConv;//GSWNAMES_INDEX or WONAMES_INDEX
}
@ -71,9 +74,9 @@
-(void)sendResponse:(GSWResponse*)response;
-(void)threadExited;
+(id)threadExited:(NSNotification*)notif;
-(NSDate*)creationDate;
-(GSWTime)creationTS;
-(BOOL)isExpired;
-(void)setRequestTS:(GSWTime)requestTS;
+(void)sendResponse:(GSWResponse*)response
toStream:(NSFileHandle*)aStream
withNamingConv:(int)requestNamingConv