1
0
forked from fsfw/fsfw

rtems osal update

This commit is contained in:
2021-01-04 15:34:08 +01:00
parent 4c07ca21eb
commit 63e80206bc
6 changed files with 36 additions and 6 deletions

View File

@ -22,9 +22,11 @@ TaskBase::TaskBase(rtems_task_priority set_priority, size_t stack_size,
}
ReturnValue_t result = convertReturnCode(status);
if (result != HasReturnvaluesIF::RETURN_OK) {
#if FSFW_CPP_OSTREAM_ENABLED == 1
sif::error << "TaskBase::TaskBase: createTask with name " << std::hex
<< osalName << std::dec << " failed with return code "
<< (uint32_t) status << std::endl;
#endif
this->id = 0;
}
}