Difference between revisions of "Components"

From Embedded Xinu
Jump to navigation Jump to search
(New page: XINU can be easily understood as consisting of conceptual "modules," or subsystems. Most modules have their own initialization function that sets up global data structures necessary for t...)
 
(Updated and reorganized listing of modules)
Line 1: Line 1:
XINU can be easily understood as consisting of conceptual "modules," or subsystems.  Most modules have their own initialization function that sets up global data structures necessary for the subsystem to function properly.  The subsystems currently within XINU include:
+
XINU can be easily understood as consisting of conceptual "modules," "components," or subsystems.  Most modules have their own initialization function that sets up global data structures necessary for the subsystem to function properly.  The subsystems currently within XINU include:
 +
 
 
* Loader
 
* Loader
* Process management
+
* System
* Semaphores
+
* * Process management
* Memory allocation
+
* * Semaphores
* Interrupt subsystem
+
* * Memory allocation
 +
* * Interrupt subsystem
 
* Devices
 
* Devices
* [[UART_Driver | UART driver]]
+
* * [[UART driver]]
* [[TTY_Driver | TTY driver]]
+
* * [[TTY driver]]
* [[Flash driver]]
+
* * [[Flash driver]]
* Silicon backplane driver
+
* * [[Backplane driver]]
* [[Shell]] (XSH)
+
* [[Shell]] (xsh)
* [[Standard_library | Standard C library]]
+
* Mailbox
* Mailboxes
 
 
* Testsuite
 
* Testsuite
 +
* Libraries
 +
* * [[Standard_library | Standard C library]]
 +
* * [[Curses|nCurses]]
 +
* * Pthread (minimal)

Revision as of 21:04, 5 February 2008

XINU can be easily understood as consisting of conceptual "modules," "components," or subsystems. Most modules have their own initialization function that sets up global data structures necessary for the subsystem to function properly. The subsystems currently within XINU include: