Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

81
votes
39answers
4k views

What are software practices in mission-critical industries (e.g. nuclear power plant)?

Edit What software practices are being used in mission-critical industries where safety is paramount? For example nuclear power plant. Update Originally this question was: How would you develop ...
35
votes
19answers
4k views

Best language for safety-critical software

If you were going to write some safety-critical software, what language would you prefer and why?
7
votes
6answers
585 views

Patterns for Safety Critical Systems

What are good resources describing process, architecture, and design patterns for developing safety-critical systems?
6
votes
1answer
91 views

Using Spring Hibernate in FDA regulated software

We are developing a diagnostic application using java, spring, hibernate and few other off the shelf libraries. According to FDA guidelines (and a consulting company ), open source libraries should be ...
6
votes
10answers
1k views

Is Agile programming too… ad hoc for safety-critical systems?

For example, would it be incredibly dangerous to do it for avionics software? Note, I don't completely understand Agile.
5
votes
1answer
299 views

What is the best resource for learning about Safety Critical Systems Development (C/C++)

I'm looking to locate a good resource (book or otherwise) on safety critical systems development techniques/methodologies, especially something that will cover both hardware and software . I have a ...
2
votes
1answer
432 views

Algorithmic trading software safety guards

I'm working on an automatic trading system. What sorts of safe-guards should I have in place? The main idea I have is to have multiple pieces checking each other. I will have a second independent ...
1
vote
1answer
124 views

Display Systesm in Safety critical embedded systems resources required

I am looking out for resources that can answer following questions of mine. Where exactly does the display systems in SC ERTS architecture fit in. What is the difference between SC display systems ...
0
votes
3answers
138 views

Rules for SIL allocation for tasks in Safety-critical applications and partition sharing

Considering a safety-critical application, composed of several tasks, I have the following question: Is it possible to have tasks of different SILs in an application, or are all tasks the same SIL? I ...
0
votes
2answers
98 views

Safety critical app - Database row validation

This is perhaps a little bit vague, but I'm hoping that in amongst all the people on SO there will be some who have ran into this type of issue before. Background Our application is a C# / .NET ...
0
votes
4answers
158 views

Safety using $_SERVER variables

I'm working on a system that relies in $_SERVER['REMOTE_ADDR'] to get the user address and check it against a white list of addresses. Is this approach safe? Or is there a way of forcing values in ...