2009-08-30 07:17:22 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2009-08-30 07:17:22 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup kernel Kernel
|
2010-03-16 19:36:21 +00:00
|
|
|
* @details The kernel is the portable part of ChibiOS/RT, this section
|
|
|
|
* documents the various kernel subsystems.
|
2009-08-30 07:17:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup kernel_info Version Numbers and Identification
|
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup config Configuration
|
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup types Types
|
2010-10-03 08:45:34 +00:00
|
|
|
* @details The system types are defined into the port layer, please refer to
|
|
|
|
* the core port implementation section.
|
2009-08-30 07:17:22 +00:00
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup base Base Kernel Services
|
2010-03-16 19:36:21 +00:00
|
|
|
* @details Base kernel services, the base subsystems are always included in
|
|
|
|
* the OS builds.
|
2009-08-30 07:17:22 +00:00
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup system System Management
|
2010-03-16 19:36:21 +00:00
|
|
|
* @ingroup base
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup scheduler Scheduler
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup threads Threads
|
2009-08-30 07:17:22 +00:00
|
|
|
* @ingroup base
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup time Time and Virtual Timers
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup synchronization Synchronization
|
2010-03-16 19:36:21 +00:00
|
|
|
* @details Synchronization services.
|
2009-08-30 07:17:22 +00:00
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-06-24 14:19:52 +00:00
|
|
|
* @defgroup semaphores Counting Semaphores
|
|
|
|
* @ingroup synchronization
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup binary_semaphores Binary Semaphores
|
2009-08-30 07:17:22 +00:00
|
|
|
* @ingroup synchronization
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup mutexes Mutexes
|
|
|
|
* @ingroup synchronization
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup condvars Condition Variables
|
|
|
|
* @ingroup synchronization
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup events Event Flags
|
|
|
|
* @ingroup synchronization
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup messages Synchronous Messages
|
|
|
|
* @ingroup synchronization
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup mailboxes Mailboxes
|
|
|
|
* @ingroup synchronization
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup memory Memory Management
|
2010-03-16 19:36:21 +00:00
|
|
|
* @details Memory Management services.
|
2009-08-30 07:17:22 +00:00
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-10-17 09:21:59 +00:00
|
|
|
* @defgroup memcore Core Memory Manager
|
|
|
|
* @ingroup memory
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup heaps Heaps
|
2009-08-30 07:17:22 +00:00
|
|
|
* @ingroup memory
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup pools Memory Pools
|
|
|
|
* @ingroup memory
|
|
|
|
*/
|
|
|
|
|
2010-11-13 21:38:55 +00:00
|
|
|
/**
|
|
|
|
* @defgroup dynamic_threads Dynamic Threads
|
|
|
|
* @ingroup memory
|
|
|
|
*/
|
|
|
|
|
2009-08-30 07:17:22 +00:00
|
|
|
/**
|
|
|
|
* @defgroup io_support I/O Support
|
2010-03-16 19:36:21 +00:00
|
|
|
* @details I/O related services.
|
2009-08-30 07:17:22 +00:00
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
|
|
|
|
2010-01-05 17:14:09 +00:00
|
|
|
/**
|
2010-09-18 10:28:03 +00:00
|
|
|
* @defgroup data_streams Abstract Sequential Streams
|
2010-01-05 17:14:09 +00:00
|
|
|
* @ingroup io_support
|
|
|
|
*/
|
|
|
|
|
2009-08-30 07:17:22 +00:00
|
|
|
/**
|
2010-09-18 10:28:03 +00:00
|
|
|
* @defgroup data_files Abstract File Streams
|
|
|
|
* @ingroup io_support
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup io_channels Abstract I/O Channels
|
2009-08-30 07:17:22 +00:00
|
|
|
* @ingroup io_support
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup io_queues I/O Queues
|
|
|
|
* @ingroup io_support
|
|
|
|
*/
|
|
|
|
|
2010-02-25 16:48:00 +00:00
|
|
|
/**
|
|
|
|
* @defgroup registry Registry
|
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
|
|
|
|
2009-08-30 07:17:22 +00:00
|
|
|
/**
|
|
|
|
* @defgroup debug Debug
|
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup internals Internals
|
|
|
|
* @ingroup kernel
|
|
|
|
*/
|
2011-03-18 18:38:08 +00:00
|
|
|
|