Glossary

active A term used to describe an object which has been created by an application.
aperiodic task A task which must execute only at irregular intervals and has only a soft deadline.
applicationIn this document, software which makes use of RTEMS.
ASR see Asynchronous Signal Routine.
asynchronousNot related in order or timing to other occurrences in the system.
AsynchronousSimilar to a hardware interrupt except that it is associated
Signal Routinewith a task and is run in the context of a task. The directives provided by the signal manager are used to service signals.
awakenedA term used to describe a task that has been unblocked and may be scheduled to the CPU.
big endianA data representation scheme in which the bytes composing a numeric value are arranged such that the most significant byte is at the lowest address.
bit-mappedA data encoding scheme in which each bit in a variable is used to represent something different. This makes for compact data representation.
blockA physically contiguous area of memory.
blockedThe task state entered by a task which has been previously started and cannot continue execution until the reason for waiting has been satisfied.
broadcast To simultaneously send a message to a logical set of destinations.
BSPsee Board Support Package.
Board Support Package A collection of device initialization and control routines specific to a particular type of board or collection of boards.
buffer A fixed length block of memory allocated from a partition.
calling conventionThe processor and compiler dependent rules which define the mechanism used to invoke subroutines in a high-level language. These rules define the passing of arguments, the call and return mechanism, and the register set which must be preserved.
Central Processing Unit This term is equivalent to the terms processor and microprocessor.
chainA data structure which allows for efficient dynamic addition and removal of elements. It differs from an array in that it is not limited to a predefined size.
coalesceThe process of merging adjacent holes into a single larger hole. Sometimes this process is referred to as garbage collection.
Configuration TableA table which contains information used to tailor RTEMS for a particular application.
contextAll of the processor registers and operating system data structures associated with a task.
context switchAlternate term for task switch. Taking control of the processor from one task and transferring it to another task.
control blockA data structure used by the executive to define and control an object.
coreWhen used in this manual, this term refers to the internal executive utility functions. In the interest of application portability, the core of the executive should not be used directly by applications.
CPUAn acronym for Central Processing Unit.
critical sectionA section of code which must be executed indivisibly.
CRTAn acronym for Cathode Ray Tube. Normally used in reference to the man-machine interface.
deadlineA fixed time limit by which a task must have completed a set of actions. Beyond this point, the results are of reduced value and may even be considered useless or harmful.
deviceA peripheral used by the application that requires special operation software. See also device driver.
device driver Control software for special peripheral devices used by the application.
directivesRTEMS' provided routines that provide support mechanisms for real-time applications.
dispatchThe act of loading a task's context onto the CPU and transferring control of the CPU to that task.
dormantThe state entered by a task after it is created and before it has been started.
Device Driver TableA table which contains the entry points for each of the configured device drivers.
dual-ported A term used to describe memory which can be accessed at two different addresses.
embeddedAn application that is delivered as a hidden part of a larger system. For example, the software in a fuel-injection control system is an embedded application found in many late-model automobiles.
envelopeA buffer provided by the MPCI layer to RTEMS which is used to pass messages between nodes in a multiprocessor system. It typically contains routing information needed by the MPCI. The contents of an envelope are referred to as a packet.
entry pointThe address at which a function or task begins to execute. In C, the entry point of a function is the function's name.
eventsA method for task communication and synchronization. The directives provided by the event manager are used to service events.
exceptionA synonym for interrupt.
executing The task state entered by a task after it has been given control of the CPU.
executiveIn this document, this term is used to referred to RTEMS. Commonly, an executive is a small real-time operating system used in embedded systems.
exportedAn object known by all nodes in a multiprocessor system. An object created with the GLOBAL attribute will be exported.
external address The address used to access dual-ported memory by all the nodes in a system which do not own the memory.
FIFOAn acronym for First In First Out.
First In First OutA discipline for manipulating entries in a data structure.
floating point coprocessorA component used in computer systems to enhance performance in mathematically intensive situations. It is typically viewed as a logical extension of the primary processor.
freedA resource that has been released by the application to RTEMS.
globalAn object that has been created with the GLOBAL attribute and exported to all nodes in a multiprocessor system.
handlerThe equivalent of a manager, except that it is internal to RTEMS and forms part of the core. A handler is a collection of routines which provide a related set of functions. For example, there is a handler used by RTEMS to manage all objects.
hard real-time system A real-time system in which a missed deadline causes the worked performed to have no value or to result in a catastrophic effect on the integrity of the system.
heapA data structure used to dynamically allocate and deallocate variable sized blocks of memory.
heterogeneousA multiprocessor computer system composed of dissimilar processors.
homogeneousA multiprocessor computer system composed of a single type of processor.
IDAn RTEMS assigned identification tag used to access an active object.
IDLE task A special low priority task which assumes control of the CPU when no other task is able to execute.
interfaceA specification of the methodology used to connect multiple independent subsystems.
internal addressThe address used to access dual-ported memory by the node which owns the memory.
interrupt A hardware facility that causes the CPU to suspend execution, save its status, and transfer control to a specific location.
interrupt levelA mask used to by the CPU to determine which pending interrupts should be serviced. If a pending interrupt is below the current interrupt level, then the CPU does not recognize that interrupt.
Interrupt Service RoutineAn ISR is invoked by the CPU to process a pending interrupt.
I/O An acronym for Input/Output.
ISRAn acronym for Interrupt Service Routine.
kernel In this document, this term is used as a synonym for executive.
list A data structure which allows for dynamic addition and removal of entries. It is not statically limited to a particular size.
little endian A data representation scheme in which the bytes composing a numeric value are arranged such that the least significant byte is at the lowest address.
localAn object which was created with the LOCAL attribute and is accessible only on the node it was created and resides upon. In a single processor configuration, all objects are local.
local operationThe manipulation of an object which resides on the same node as the calling task.
logical addressAn address used by an application. In a system without memory management, logical addresses will equal physical addresses.
loosely-coupledA multiprocessor configuration where shared memory is not used for communication.
major numberThe index of a device driver in the Device Driver Table.
manager A group of related RTEMS' directives which provide access and control over resources.
memory pool Used interchangeably with heap.
messageA sixteen byte entity used to communicate between tasks. Messages are sent to message queues and stored in message buffers.
message bufferA block of memory used to store messages.
message queueAn RTEMS object used to synchronize and communicate between tasks by transporting messages between sending and receiving tasks.
Message Queue Control Block A data structure associated with each message queue used by RTEMS to manage that message queue.
minor numberA numeric value passed to a device driver, the exact usage of which is driver dependent.
mode An entry in a task's control block that is used to determine if the task allows preemption, timeslicing, processing of signals, and the interrupt disable level used by the task.
MPCIAn acronym for Multiprocessor Communications Interface Layer.
multiprocessingThe simultaneous execution of two or more processes by a multiple processor computer system.
multiprocessor A computer with multiple CPUs available for executing applications.
Multiprocessor Communications Interface LayerA set of user-provided routines which enable the nodes in a multiprocessor system to communicate with one another.
Multiprocessor Configuration TableThe data structure defining the characteristics of the multiprocessor target system with which RTEMS will communicate.
multitaskingThe alternation of execution amongst a group of processes on a single CPU. A scheduling algorithm is used to determine which process executes at which time.
mutual exclusionA term used to describe the act of preventing other tasks from accessing a resource simultaneously.
nestedA term used to describe an ASR that occurs during another ASR or an ISR that occurs during another ISR.
node A term used to reference a processor running RTEMS in a multiprocessor system.
non-existent The state occupied by an uncreated or deleted task.
numeric coprocessor A component used in computer systems to enhance performance in mathematically intensive situations. It is typically viewed as a logical extension of the primary processor.
object In this document, this term is used to refer collectively to tasks, timers, message queues, partitions, regions, semaphores, ports, and rate monotonic periods. All RTEMS objects have IDs and user-assigned names.
object-orientedA term used to describe systems with common mechanisms for utilizing a variety of entities. Object-oriented systems shield the application from implementation details.
operating systemThe software which controls all the computer's resources and provides the base upon which application programs can be written.
overheadThe portion of the CPUs processing power consumed by the operating system.
packetA buffer which contains the messages passed between nodes in a multiprocessor system. A packet is the contents of an envelope.
partitionAn RTEMS object which is used to allocate and deallocate fixed size blocks of memory from an dynamically specified area of memory.
Partition Control BlockA data structure associated with each partition used by RTEMS to manage that partition.
pendingA term used to describe a task blocked waiting for an event, message, semaphore, or signal.
periodic taskA task which must execute at regular intervals and comply with a hard deadline.
physical addressThe actual hardware address of a resource.
poll A mechanism used to determine if an event has occurred by periodically checking for a particular status. Typical events include arrival of data, completion of an action, and errors.
pool A collection from which resources are allocated.
portabilityA term used to describe the ease with which software can be rehosted on another computer.
postingThe act of sending an event, message, semaphore, or signal to a task.
preemptThe act of forcing a task to relinquish the processor and dispatching to another task.
priority A mechanism used to represent the relative importance of an element in a set of items. RTEMS uses priority to determine which task should execute.
priority inheritance An algorithm that calls for the lower priority task holding a resource to have its priority increased to that of the highest priority task blocked waiting for that resource. This avoids the problem of priority inversion.
priority inversion A form of indefinite postponement which occurs when a high priority tasks requests access to shared resource currently allocated to low priority task. The high priority task must block until the low priority task releases the resource.
processor utilization The percentage of processor time used by a task or a set of tasks.
proxy An RTEMS control structure used to represent, on a remote node, a task which must block as part of a remote operation.
Proxy Control Block A data structure associated with each proxy used by RTEMS to manage that proxy.
PTCBAn acronym for Partition Control Block.
PXCBAn acronym for Proxy Control Block.
quantumThe application defined unit of time in which the processor is allocated.
queueAlternate term for message queue.
QCB An acronym for Message Queue Control Block.
readyA task occupies this state when it is available to be given control of the CPU.
real-timeA term used to describe systems which are characterized by requiring deterministic response times to external stimuli. The external stimuli require that the response occur at a precise time or the response is incorrect.
reentrantA term used to describe routines which do not modify themselves or global variables.
regionAn RTEMS object which is used to allocate and deallocate variable size blocks of memory from a dynamically specified area of memory.
Region Control Block A data structure associated with each region used by RTEMS to manage that region.
registersRegisters are locations physically located within a component, typically used for device control or general purpose storage.
remote Any object that does not reside on the local node.
remote operationThe manipulation of an object which does not reside on the same node as the calling task.
return code Also known as error code or return value.
resourceA hardware or software entity to which access must be controlled.
resumeRemoving a task from the suspend state. If the task's state is ready following a call to the task_resume directive, then the task is available for scheduling.
return codeA value returned by RTEMS directives to indicate the completion status of the directive.
RNCBAn acronym for Region Control Block.
round-robinA task scheduling discipline in which tasks of equal priority are executed in the order in which they are made ready.
RS-232A standard for serial communications.
running The state of a rate monotonic timer while it is being used to delineate a period. The timer exits this state by either expiring or being canceled.
schedule The process of choosing which task should next enter the executing state.
schedulableA set of tasks which can be guaranteed to meet their deadlines based upon a specific scheduling algorithm.
segmentsVariable sized memory blocks allocated from a region.
semaphore An RTEMS object which is used to synchronize tasks and provide mutually exclusive access to resources.
Semaphore Control BlockA data structure associated with each semaphore used by RTEMS to manage that semaphore.
shared memoryMemory which is accessible by multiple nodes in a multiprocessor system.
signal An RTEMS provided mechanism to communicate asynchronously with a task. Upon reception of a signal, the ASR of the receiving task will be invoked.
signal set A thirty-two bit entity which is used to represent a task's collection of pending signals and the signals sent to a task.
SMCBAn acronym for Semaphore Control Block.
soft real-time system A real-time system in which a missed deadline does not compromise the integrity of the system.
sporadic taskA task which executes at irregular intervals and must comply with a hard deadline. A minimum period of time between successive iterations of the task can be guaranteed.
stackA data structure that is managed using a Last In First Out (LIFO) discipline. Each task has a stack associated with it which is used to store return information and local variables.
status code Also known as error code or return value.
suspendA term used to describe a task that is not competing for the CPU because it has had a task_suspend directive.
synchronousRelated in order or timing to other occurrences in the system.
system callIn this document, this is used as an alternate term for directive.
targetThe system on which the application will ultimately execute.
taskA logically complete thread of execution. The CPU is allocated among the ready tasks.
Task Control Block A data structure associated with each task used by RTEMS to manage that task.
task switchAlternate terminology for context switch. Taking control of the processor from one task and given to another.
TCB An acronym for Task Control Block.
tickThe basic unit of time used by RTEMS. It is a user-configurable number of microseconds. The current tick expires when the clock_tick directive is invoked.
tightly-coupledA multiprocessor configuration system which communicates via shared memory.
timeoutAn argument provided to a number of directives which determines the maximum length of time an application task is willing to wait to acquire the resource if it is not immediately available.
timerAn RTEMS object used to invoke subprograms at a later time.
Timer Control Block A data structure associated with each timer used by RTEMS to manage that timer.
timeslicingA task scheduling discipline in which tasks of equal priority are executed for a specific period of time before being preempted by another task.
timesliceThe application defined unit of time in which the processor is allocated.
TMCBAn acronym for Timer Control Block.
transient overload A temporary rise in system activity which may cause deadlines to be missed. Rate Monotonic Scheduling can be used to determine if all deadlines will be met under transient overload.
user extensionsSoftware routines provided by the application to enhance the functionality of RTEMS.
User Extension Table A table which contains the entry points for each user extensions.
User Initialization Tasks Table A table which contains the information needed to create and start each of the user initialization tasks.
user-providedAlternate term for user-supplied. This term is used to designate any software routines which must be written by the application designer.
user-suppliedAlternate term for user-provided. This term is used to designate any software routines which must be written by the application designer.
vectorMemory pointers used by the processor to fetch the address of routines which will handle various exceptions and interrupts.
wait queueThe list of tasks blocked pending the release of a particular resource. Message queues, regions, and semaphores have a wait queue associated with them.
yieldWhen a task voluntarily releases control of the processor.