bugfix: MultiThreadedConnector::sinkThread() was private, now public
This commit is contained in:
parent
6eba725b50
commit
05d7381966
|
@ -1,3 +1,9 @@
|
||||||
|
DarkIce next version:
|
||||||
|
|
||||||
|
o bugfix: MultiThreadedConnector::sinkThread() was private, now public
|
||||||
|
o added fileAddDate configuration option
|
||||||
|
thanks to Nicu Pavel <npavel@ituner.com>
|
||||||
|
|
||||||
20-10-2002: DarkIce 0.12 released
|
20-10-2002: DarkIce 0.12 released
|
||||||
|
|
||||||
o ported to FreeBSD (removed reference to MSG_NOSIGNAL in TcpSocket.cpp)
|
o ported to FreeBSD (removed reference to MSG_NOSIGNAL in TcpSocket.cpp)
|
||||||
|
|
|
@ -180,15 +180,6 @@ class MultiThreadedConnector : public virtual Connector
|
||||||
void
|
void
|
||||||
strip ( void ) throw ( Exception );
|
strip ( void ) throw ( Exception );
|
||||||
|
|
||||||
/**
|
|
||||||
* This is the function for each thread.
|
|
||||||
* This function has to return fast
|
|
||||||
*
|
|
||||||
* @param ixSink the index of the sink this thread works on.
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
sinkThread( int ixSink );
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -310,6 +301,15 @@ class MultiThreadedConnector : public virtual Connector
|
||||||
*/
|
*/
|
||||||
virtual void
|
virtual void
|
||||||
close ( void ) throw ( Exception );
|
close ( void ) throw ( Exception );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the function for each thread.
|
||||||
|
* This function has to return fast
|
||||||
|
*
|
||||||
|
* @param ixSink the index of the sink this thread works on.
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
sinkThread( int ixSink );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -328,6 +328,9 @@ class MultiThreadedConnector : public virtual Connector
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.3 2002/11/26 21:41:20 darkeye
|
||||||
|
bugfix: MultiThreadedConnector::sinkThread() was private, now public
|
||||||
|
|
||||||
Revision 1.2 2002/10/19 13:35:21 darkeye
|
Revision 1.2 2002/10/19 13:35:21 darkeye
|
||||||
when a connection is dropped, DarkIce tries to reconnect, indefinitely
|
when a connection is dropped, DarkIce tries to reconnect, indefinitely
|
||||||
removed extreme event reporting for thread-related events
|
removed extreme event reporting for thread-related events
|
||||||
|
|
Loading…
Reference in New Issue