cosmetic changes
This commit is contained in:
parent
fae76d2fae
commit
85aab89906
|
@ -374,7 +374,9 @@ MultiThreadedConnector :: ThreadData :: threadFunction( void * param )
|
|||
|
||||
pthread_getschedparam( threadData->thread, &sched_type, &sched );
|
||||
|
||||
reportEvent( 5, "MultiThreadedConnector :: ThreadData :: threadFunction, was (thread, priority, type): ",
|
||||
reportEvent( 5,
|
||||
"MultiThreadedConnector :: ThreadData :: threadFunction, "
|
||||
"was (thread, priority, type): ",
|
||||
param,
|
||||
sched.sched_priority,
|
||||
sched_type == SCHED_FIFO ? "SCHED_FIFO" :
|
||||
|
@ -387,7 +389,9 @@ MultiThreadedConnector :: ThreadData :: threadFunction( void * param )
|
|||
pthread_setschedparam( threadData->thread, SCHED_FIFO, &sched);
|
||||
|
||||
pthread_getschedparam( threadData->thread, &sched_type, &sched );
|
||||
reportEvent( 5, "MultiThreadedConnector :: ThreadData :: threadFunction, now is (thread, priority, type): ",
|
||||
reportEvent( 5,
|
||||
"MultiThreadedConnector :: ThreadData :: threadFunction, "
|
||||
"now is (thread, priority, type): ",
|
||||
param,
|
||||
sched.sched_priority,
|
||||
sched_type == SCHED_FIFO ? "SCHED_FIFO" :
|
||||
|
@ -407,6 +411,9 @@ MultiThreadedConnector :: ThreadData :: threadFunction( void * param )
|
|||
$Source$
|
||||
|
||||
$Log$
|
||||
Revision 1.8 2006/05/18 07:13:00 darkeye
|
||||
cosmetic changes
|
||||
|
||||
Revision 1.7 2006/05/16 09:00:08 darkeye
|
||||
added yield calls to the connector, when trying to reconnect...
|
||||
|
||||
|
|
Loading…
Reference in New Issue