C/C++
rtcorba.txt
Associated article: Real-Time Systems & RT CORBA
Tags: C/C++
Published source code accompanying the article by William Nagel in which he examines the Real-Time CORBA specification--a set of CORBA extensions for systems with real- time scheduling requirements.
Real-Time Systems & RT CORBA
by William Nagel
Example 1:
void processData(const data& packet)
{
// First, let's run the data through the analyzer to determine
// the priority it should be running at.
int priority = _analyzer->analyzePriority(data);
// Get the ...


