var fDesc=new Array();
fDesc[0] = "RTSim is a simulator for real-time systems written in C . It has been developed as an internal project at Scuola Superiore Sant'Anna as part of many research project, mainly thanks to the work of many PhD students.
RTSIM consists of 4 components:
- metasim: it is a it is a generic library for simulation of discrete event systems. This library is also released separately, see the metasim home page.
- rtlib: based on metasim, it is library for simulating scheduling algorithms and real-time tasks.
- ctrlib (optional): it is a library for simulating real-time control systems. It requires the octave library.
- jtracer (optional): it is a java based tool for visualisation of schedule traces produced by a rtlib program.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}