Thought Leadership

What is “real time”?

By Colin Walls

The term “real time” is widely used nowadays. Although it is a technical term, it finds its way into quite normal conversation. I might be heard to say “I do not watch much real-time TV”, meaning that I record programs to watch at my convenience. So, colloquially, real time means “immediate” or “occurring now”. How does this align with its precise meaning when we refer to a real time operating system, for example? …

Looking up “real-time system” in a rather old computer dictionary yields:

“Any system in which the processing of data input to the system to obtain a result occurs virtually simultaneously with the event generating that data.”

It cites airline booking systems being an example. This is clearly not a useful definition for our needs.

Here is a better definition:

“A real-time system is one in which the correctness of the computations not only depends upon the logical correctness of the computation but also upon the time at which the result is produced.

“If the timing constraints of the system are not met, system failure is said to have occurred.”

Another way of putting this definition is to say that a real time system is, above all, predictable. We tend to use the term deterministic.

So a deterministic operating system performs all its actions in a well defined timeframe and enables a programmer to produce applications with the same characteristic. Real time does not mean fast – it means fast enough for the specific requirements of the application in hand.

Unfortunately, it is not quite so black and white. An OS can have a degree of determinism – it is a question of the variance between the time taken to do operations under different circumstances. So, a classic RTOS, like Nucleus, has a very low variance and is, hence, very deterministic. Linux, on the other hand, generally exhibits quite a high variance and may not normally be described as real time.

There is always the “brute force” approach to building a system, where you design with enough raw CPU power that the speed/variance of the OS hardly matters, as everything will be done in time. For some requirements, that might be a good solution, but, for many, such a profligate use of resources is not an option.

Comments

0 thoughts about “What is “real time”?
  • Most real-time I’ve done was a water level control based on an FPGA. I did it on a dare by a college professor. It did the control loop math in about 3 clock cycles. After that I still have trouble thinking of any OS as real-time =P

    • Your point about the FPGA is that the parallel operations inherent in the hardware put all the traditional OS, compile, single cpu, etc. timing to shame.

  • At the other end of things, I remember someone making the case a few years ago that a payroll system was a real-time application. Its constraints were on a much longer timescale than was usually considered real-time, but if the checks weren’t cut at the end of the pay period, you had a failure.

  • You cited my operating definition in your 9th paragraph:
    “fast enough.”

    If you are driving a user interface, and must update a
    display in response to a human pushing buttons, any delay
    less than 100 msec is (to the client) indistinguishable from
    0.

    If you are trying to to protect an IGBT from catastrophic
    failure after it comes out of saturation, the maximum delay
    is more like 10 usec.

    There are 4 orders of magnitude between those two numbers,
    yet both are ‘real-time.’ Trying to iron some numeric
    definition of the term is a waste of time.

    Gary Lynch
    Staco Energy Products

  • Designing with raw cpu power only solves the issue if a single cpu is a given. Multiple small cpus dedicated to specific tasks is simpler and allows cpu power to be scaled.

Leave a Reply

This article first appeared on the Siemens Digital Industries Software blog at https://blogs.sw.siemens.com/embedded-software/2010/03/01/what-is-real-time/