put linux prinouts in namespace

This commit is contained in:
2020-04-30 22:03:16 +02:00
parent 2c6b446500
commit e39d669ed8
7 changed files with 76 additions and 42 deletions

View File

@ -9,7 +9,8 @@ Timer::Timer() {
sigEvent.sigev_value.sival_ptr = &timerId;
int status = timer_create(CLOCK_MONOTONIC, &sigEvent, &timerId);
if(status!=0){
error << "Timer creation failed with: " << status << " errno: " << errno << std::endl;
sif::error << "Timer creation failed with: " << status <<
" errno: " << errno << std::endl;
}
}