Questions tagged [safety-critical]

Software is [safety-critical] when an incorrect response or an incorrectly timed response can result in significant loss to its users; in the most extreme case, loss of life may result from such failures.

A software is when an incorrect response or an incorrectly timed response can result in significant loss to its users; in the most extreme case, loss of life may result from such failures.

Safety-critical applications require an exceedingly rigorous validation and certification process.

46 questions
-1
votes
2 answers

How to fix mentioned MISRA-2012 10.4 and 10.9 violations issue in this code?

There are required pieces to formulate my problem. Below are content of MyError.h header file. myError.h ########################### # myError.h ########################### 1 typedef enum 2 { 3 MySuccess = 0x00000000, 4 MyError1 =…
Amit Sharma
  • 1,987
  • 2
  • 18
  • 29
1 2 3
4