cosmetic changes

This commit is contained in:
darkeye 2006-05-18 07:13:00 +00:00
parent fae76d2fae
commit 85aab89906
1 changed files with 21 additions and 14 deletions

View File

@ -374,7 +374,9 @@ MultiThreadedConnector :: ThreadData :: threadFunction( void * param )
pthread_getschedparam( threadData->thread, &sched_type, &sched ); 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, param,
sched.sched_priority, sched.sched_priority,
sched_type == SCHED_FIFO ? "SCHED_FIFO" : sched_type == SCHED_FIFO ? "SCHED_FIFO" :
@ -387,7 +389,9 @@ MultiThreadedConnector :: ThreadData :: threadFunction( void * param )
pthread_setschedparam( threadData->thread, SCHED_FIFO, &sched); pthread_setschedparam( threadData->thread, SCHED_FIFO, &sched);
pthread_getschedparam( threadData->thread, &sched_type, &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, param,
sched.sched_priority, sched.sched_priority,
sched_type == SCHED_FIFO ? "SCHED_FIFO" : sched_type == SCHED_FIFO ? "SCHED_FIFO" :
@ -407,6 +411,9 @@ MultiThreadedConnector :: ThreadData :: threadFunction( void * param )
$Source$ $Source$
$Log$ $Log$
Revision 1.8 2006/05/18 07:13:00 darkeye
cosmetic changes
Revision 1.7 2006/05/16 09:00:08 darkeye Revision 1.7 2006/05/16 09:00:08 darkeye
added yield calls to the connector, when trying to reconnect... added yield calls to the connector, when trying to reconnect...