mirror of
https://github.com/nasa/trick.git
synced 2025-06-15 05:38:19 +00:00
Change std::endl to linefeed as appropriate. (#773)
* Fix endl issue in variable server JSON generation. Ref #766 * Change std::endl to line feed as appropraite. #766 * Change std::endl to line feed in MemoryManager as appropriate. #766 * Change std::endl to linefeed as appropriate. #766 * Change std::endl to line feed as appropriate in JSONVariableServer. #766 * Change std::endl to line feed as appropriate in still more files. #766
This commit is contained in:
@ -322,10 +322,10 @@ void * Trick::ThreadBase::thread_helper( void * context ) {
|
||||
}
|
||||
|
||||
void Trick::ThreadBase::dump( std::ostream & oss ) {
|
||||
oss << " from Trick::ThreadBase" << std::endl ;
|
||||
oss << " pthread_id = " << pthread_id << std::endl ;
|
||||
oss << " process_id = " << pid << std::endl ;
|
||||
oss << " rt_priority = " << rt_priority << std::endl ;
|
||||
oss << " from Trick::ThreadBase\n";
|
||||
oss << " pthread_id = " << pthread_id << "\n";
|
||||
oss << " process_id = " << pid << "\n";
|
||||
oss << " rt_priority = " << rt_priority << "\n";
|
||||
#if __linux
|
||||
oss << " cpus = " ;
|
||||
bool first_print = true ;
|
||||
|
Reference in New Issue
Block a user