Download XOberon Operating System

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Spring (operating system) wikipedia , lookup

DNIX wikipedia , lookup

VS/9 wikipedia , lookup

Copland (operating system) wikipedia , lookup

Distributed operating system wikipedia , lookup

Process management (computing) wikipedia , lookup

Memory management unit wikipedia , lookup

Burroughs MCP wikipedia , lookup

Paging wikipedia , lookup

Transcript
XOberon Operating System
CLAUDIA MARIN
CS 550
Fall 2005
OVERVIEW
• History :XOberon is a real-time operating
system developed at the Institute of Robotics,
Swiss Federal Institute of Technology, Zurich.
• Use of XOberon OS: Mostly used in robotics,
XOberon is driving applications in PowerPC
implementations such as: Hexaglide, Robojet ,
Mobile Post System .
XOberon Hardware Requirements
• The complete XOberon system consists
of:
→ a host machine that runs the development
environment for applications
→ a target machine (PowerPC and XOberon OS)
with at least 1MB of ROM and 1.5 MB of RAM free.
→ an Ethernet connection between the two
machines
Real-Time Systems
• Real-time Operating Systems task
classification:
→ Hard real-time tasks: the
execution and result is critical for the entire
system.
→ Non real-time tasks: the execution
is not critical for the system (maintenance
tasks).
Real-Time Systems cont.
• Tasks can also be classified according to their
time of execution as follows:
→ Periodic tasks – enter execution state at
regular interval of time.
→ Aperiodic tasks – their execution cannot be
anticipated and is determined by internal or
external events (usually non real-time tasks).
→ Sporadic tasks – deal with the exceptions that
may occur (system failures).
XOberon Memory Management
• XOberon uses paging in dealing with
memory-related errors, dividing the
physical memory into pages and mapping
it page by page into the virtual address
space of 232 bytes.
The Paging Policy
The paging policy used by XOberon consists in
reserving virtual blocks to the system heap,
module loader, stacks pool, memory mapped
input/output and DMA. Each of these blocks are
managed differently based on its characteristics
and is tuned for optimal performance. Many of
the memory related problems are now solved by
this memory management scheme, bringing
reliability and more functionality to the system.
CPU Scheduling
• In the scheduling process, XOberon system is
dividing the processes into:
a. real-time processes ,referred to as processes or
tasks
b. non real-time processes, referred to as threads
• XOberon scheduler uses the shortest-deadline
first scheduling algorithm in managing the realtime processes.
Overhead Scheduling
XOberon implements an Overhead
Scheduler optimized with:
-
Hand tuned assembler code
Cache tuning
Stack pre-fetching
Context-switching that is performed on a perprocess base.
- Fine tuned memory by using paging.
Mutual Exclusion and Synchronization
• XOberon implements a Synchronizer that
provides communication between
processes and threads and also handles
the mutual exclusion.
• Locks performed in the system are
monitored by an exclusion monitor that is
designed to avoid unbalanced entering
and exiting of the process or thread from a
mutual exclusive region.
Conclusions :
• XOberon has proved its reliability and
safety through providing successful
performance in real time use. It is a robust
operating system, implementing multiple
features that makes it easy to use and at
the same time proves solid real time
capabilities.