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:
jmpenn
2019-05-13 16:05:01 -05:00
committed by GitHub
parent 3187dd9012
commit 3f35388b49
11 changed files with 68 additions and 67 deletions

View File

@ -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 ;