What is RMA?
“Rate-Monotonic Analysis” is a term coined by researchers at CMU. It refers to the real-time performance analysis of a system design that uses static-priority driven scheduling, in particular, the “rate-monotonic” static priority assignment, where tasks with shorter periods get the higher priorities, in a typical static-priority driven real-time operating system like pSOS VxWorks VRTX etc. Research (mostly) from CMU and U-York and Illinois gives you the mathematical tools to answer “what if I designed it this way???” analysis on your system workload. You need to break your software into “tasks” with “periods” and “deadlines” (relative to the period) and you must be able to guess or prototype a rough “execution time” for each task. Also, for more precise analysis, it helps to know all the critical sections and their runtimes and who shares them, or at the least, the length of the longest critical section in all of your software.