Renamed the kernel header to match their source files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1679 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
411e6a6351
commit
5fb790997f
|
@ -22,15 +22,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file condvars.h
|
||||
* @file chcond.h
|
||||
* @brief Condition Variables macros and structures.
|
||||
*
|
||||
* @addtogroup condvars
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _CONDVARS_H_
|
||||
#define _CONDVARS_H_
|
||||
#ifndef _CHCOND_H_
|
||||
#define _CHCOND_H_
|
||||
|
||||
#if CH_USE_CONDVARS
|
||||
|
||||
|
@ -86,6 +86,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_CONDVARS */
|
||||
|
||||
#endif /* _CONDVARS_H_ */
|
||||
#endif /* _CHCOND_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file debug.h
|
||||
* @file chdebug.h
|
||||
* @brief Debug macros and structures.
|
||||
*
|
||||
* @addtogroup debug
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _DEBUG_H_
|
||||
#define _DEBUG_H_
|
||||
#ifndef _CHDEBUG_H_
|
||||
#define _CHDEBUG_H_
|
||||
|
||||
/**
|
||||
* @brief Trace buffer entries.
|
||||
|
@ -158,6 +158,6 @@ extern "C" {
|
|||
#endif
|
||||
#endif /* !defined(__DOXYGEN__) */
|
||||
|
||||
#endif /* _DEBUG_H_ */
|
||||
#endif /* _CHDEBUG_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file events.h
|
||||
* @file chevents.h
|
||||
* @brief Events macros and structures.
|
||||
*
|
||||
* @addtogroup events
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _EVENTS_H_
|
||||
#define _EVENTS_H_
|
||||
#ifndef _CHEVENTS_H_
|
||||
#define _CHEVENTS_H_
|
||||
|
||||
#if CH_USE_EVENTS
|
||||
|
||||
|
@ -152,6 +152,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_EVENTS */
|
||||
|
||||
#endif /* _EVENTS_H_ */
|
||||
#endif /* _CHEVENTS_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file heap.h
|
||||
* @file chheap.h
|
||||
* @brief Heaps macros and structures.
|
||||
*
|
||||
* @addtogroup heaps
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _HEAP_H_
|
||||
#define _HEAP_H_
|
||||
#ifndef _CHHEAP_H_
|
||||
#define _CHHEAP_H_
|
||||
|
||||
#if CH_USE_HEAP
|
||||
|
||||
|
@ -85,6 +85,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_HEAP */
|
||||
|
||||
#endif /* _HEAP_H_ */
|
||||
#endif /* _CHHEAP_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file channels.h
|
||||
* @file chioch.h
|
||||
* @brief I/O channels.
|
||||
* @details This header defines abstract interfaces useful to access generic
|
||||
* I/O resources in a standardized way.
|
||||
|
@ -27,8 +27,8 @@
|
|||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _CHANNELS_H_
|
||||
#define _CHANNELS_H_
|
||||
#ifndef _CHIOCH_H_
|
||||
#define _CHIOCH_H_
|
||||
|
||||
/**
|
||||
* @brief @p BaseChannel specific methods.
|
||||
|
@ -264,6 +264,6 @@ typedef struct {
|
|||
|
||||
#endif /* CH_USE_EVENTS */
|
||||
|
||||
#endif /* _CHANNELS_H_ */
|
||||
#endif /* _CHIOCH_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file lists.h
|
||||
* @file chlists.h
|
||||
* @brief Thread queues/lists macros and structures.
|
||||
* @note All the macros present in this module, while public, are not
|
||||
* an OS API and should not be directly used in the user applications
|
||||
|
@ -28,8 +28,8 @@
|
|||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _LISTS_H_
|
||||
#define _LISTS_H_
|
||||
#ifndef _CHLISTS_H_
|
||||
#define _CHLISTS_H_
|
||||
|
||||
typedef struct Thread Thread;
|
||||
|
||||
|
@ -113,6 +113,6 @@ extern "C" {
|
|||
|
||||
#endif /* !CH_OPTIMIZE_SPEED */
|
||||
|
||||
#endif /* _LISTS_H_ */
|
||||
#endif /* _CHLISTS_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file mailboxes.h
|
||||
* @file chmboxes.h
|
||||
* @brief Mailboxes macros and structures.
|
||||
*
|
||||
* @addtogroup mailboxes
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _MAILBOXES_H_
|
||||
#define _MAILBOXES_H_
|
||||
#ifndef _CHMBOXES_H_
|
||||
#define _CHMBOXES_H_
|
||||
|
||||
#if CH_USE_MAILBOXES
|
||||
|
||||
|
@ -138,6 +138,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_MAILBOXES */
|
||||
|
||||
#endif /* _MAILBOXES_H_ */
|
||||
#endif /* _CHMBOXES_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file memcore.h
|
||||
* @file chmemcore.h
|
||||
* @brief Core memory manager macros and structures.
|
||||
*
|
||||
* @addtogroup memcore
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _MEMCORE_H_
|
||||
#define _MEMCORE_H_
|
||||
#ifndef _CHMEMCORE_H_
|
||||
#define _CHMEMCORE_H_
|
||||
|
||||
/**
|
||||
* @brief Memory get function.
|
||||
|
@ -66,6 +66,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_MEMCORE */
|
||||
|
||||
#endif /* _MEMCORE_H_ */
|
||||
#endif /* _CHMEMCORE_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file mempools.h
|
||||
* @file chmempools.h
|
||||
* @brief Memory Pools macros and structures.
|
||||
*
|
||||
* @addtogroup pools
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _MEMPOOLS_H_
|
||||
#define _MEMPOOLS_H_
|
||||
#ifndef _CHMEMPOOLS_H_
|
||||
#define _CHMEMPOOLS_H_
|
||||
|
||||
#if CH_USE_MEMPOOLS
|
||||
|
||||
|
@ -88,6 +88,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_MEMPOOLS */
|
||||
|
||||
#endif /* _MEMPOOLS_H_ */
|
||||
#endif /* _CHMEMPOOLS_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file messages.h
|
||||
* @file chmsg.h
|
||||
* @brief Messages macros and structures.
|
||||
*
|
||||
* @addtogroup messages
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _MESSAGES_H_
|
||||
#define _MESSAGES_H_
|
||||
#ifndef _CHMSG_H_
|
||||
#define _CHMSG_H_
|
||||
|
||||
#if CH_USE_MESSAGES
|
||||
|
||||
|
@ -55,6 +55,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_MESSAGES */
|
||||
|
||||
#endif /* _MESSAGES_H_ */
|
||||
#endif /* _CHMSG_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file mutexes.h
|
||||
* @file chmtx.h
|
||||
* @brief Mutexes macros and structures.
|
||||
*
|
||||
* @addtogroup mutexes
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _MUTEXES_H_
|
||||
#define _MUTEXES_H_
|
||||
#ifndef _CHMTX_H_
|
||||
#define _CHMTX_H_
|
||||
|
||||
#if CH_USE_MUTEXES
|
||||
|
||||
|
@ -83,6 +83,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_MUTEXES */
|
||||
|
||||
#endif /* _MUTEXES_H_ */
|
||||
#endif /* _CHMTX_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file queues.h I/O
|
||||
* @file chqueues.h I/O
|
||||
* @brief Queues macros and structures.
|
||||
*
|
||||
* @addtogroup io_queues
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _QUEUES_H_
|
||||
#define _QUEUES_H_
|
||||
#ifndef _CHQUEUES_H_
|
||||
#define _CHQUEUES_H_
|
||||
|
||||
#if CH_USE_QUEUES
|
||||
|
||||
|
@ -237,6 +237,6 @@ extern "C" {
|
|||
#endif
|
||||
#endif /* CH_USE_QUEUES */
|
||||
|
||||
#endif /* _QUEUES_H_ */
|
||||
#endif /* _CHQUEUES_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file registry.h
|
||||
* @file chregistry.h
|
||||
* @brief Threads registry macros and structures.
|
||||
*
|
||||
* @addtogroup registry
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _REGISTRY_H_
|
||||
#define _REGISTRY_H_
|
||||
#ifndef _CHREGISTRY_H_
|
||||
#define _CHREGISTRY_H_
|
||||
|
||||
#if CH_USE_REGISTRY
|
||||
|
||||
|
@ -64,6 +64,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_REGISTRY */
|
||||
|
||||
#endif /* _REGISTRY_H_ */
|
||||
#endif /* _CHREGISTRY_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file scheduler.h
|
||||
* @file chschd.h
|
||||
* @brief Scheduler macros and structures.
|
||||
*
|
||||
* @addtogroup scheduler
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _SCHEDULER_H_
|
||||
#define _SCHEDULER_H_
|
||||
#ifndef _CHSCHD_H_
|
||||
#define _CHSCHD_H_
|
||||
|
||||
/** @brief Default thread wakeup low level message.*/
|
||||
#define RDY_OK 0
|
||||
|
@ -129,6 +129,6 @@ extern "C" {
|
|||
*/
|
||||
#define chSchIsRescRequiredI() (firstprio(&rlist.r_queue) > currp->p_prio)
|
||||
|
||||
#endif /* _SCHEDULER_H_ */
|
||||
#endif /* _CHSCHD_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file semaphores.h
|
||||
* @file chsem.h
|
||||
* @brief Semaphores macros and structures.
|
||||
*
|
||||
* @addtogroup semaphores
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _SEMAPHORES_H_
|
||||
#define _SEMAPHORES_H_
|
||||
#ifndef _CHSEM_H_
|
||||
#define _CHSEM_H_
|
||||
|
||||
#if CH_USE_SEMAPHORES
|
||||
|
||||
|
@ -99,6 +99,6 @@ extern "C" {
|
|||
|
||||
#endif /* CH_USE_SEMAPHORES */
|
||||
|
||||
#endif /* _SEMAPHORES_H_ */
|
||||
#endif /* _CHSEM_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file streams.h
|
||||
* @file chstreams.h
|
||||
* @brief Data streams.
|
||||
* @details This header defines abstract interfaces useful to access generic
|
||||
* data streams in a standardized way.
|
||||
|
@ -27,8 +27,8 @@
|
|||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _STREAMS_H_
|
||||
#define _STREAMS_H_
|
||||
#ifndef _CHSTREAMS_H_
|
||||
#define _CHSTREAMS_H_
|
||||
|
||||
/**
|
||||
* @brief BaseSequentialStream specific methods.
|
||||
|
@ -91,6 +91,6 @@ typedef struct {
|
|||
*/
|
||||
#define chSequentialStreamRead(ip, bp, n) ((ip)->vmt->read(ip, bp, n))
|
||||
|
||||
#endif /* _STREAMS_H_ */
|
||||
#endif /* _CHSTREAMS_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file sys.h
|
||||
* @file chsys.h
|
||||
* @brief System related macros and structures.
|
||||
*
|
||||
* @addtogroup system
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _SYS_H_
|
||||
#define _SYS_H_
|
||||
#ifndef _CHSYS_H_
|
||||
#define _CHSYS_H_
|
||||
|
||||
/**
|
||||
* @brief Halts the system.
|
||||
|
@ -173,6 +173,6 @@ extern "C" {
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif /* _SYS_H_ */
|
||||
#endif /* _CHSYS_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file threads.h
|
||||
* @file chthreads.h
|
||||
* @brief Threads macros and structures.
|
||||
*
|
||||
* @addtogroup threads
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _THREADS_H_
|
||||
#define _THREADS_H_
|
||||
#ifndef _CHTHREADS_H_
|
||||
#define _CHTHREADS_H_
|
||||
|
||||
/*
|
||||
* Module dependencies check.
|
||||
|
@ -325,6 +325,6 @@ extern "C" {
|
|||
*/
|
||||
#define chThdSleepMicroseconds(usec) chThdSleep(US2ST(usec))
|
||||
|
||||
#endif /* _THREADS_H_ */
|
||||
#endif /* _CHTHREADS_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file vt.h
|
||||
* @file chvt.h
|
||||
* @brief Time macros and structures.
|
||||
*
|
||||
* @addtogroup time
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef _VT_H_
|
||||
#define _VT_H_
|
||||
#ifndef _CHVT_H_
|
||||
#define _CHVT_H_
|
||||
|
||||
/**
|
||||
* @brief Time conversion utility.
|
||||
|
@ -142,6 +142,6 @@ extern "C" {
|
|||
*/
|
||||
#define chTimeNow() (vtlist.vt_systime)
|
||||
|
||||
#endif /* _VT_H_ */
|
||||
#endif /* _CHVT_H_ */
|
||||
|
||||
/** @} */
|
||||
|
|
2
todo.txt
2
todo.txt
|
@ -9,7 +9,7 @@ Before 1.6.0:
|
|||
* Reference counter for threads, concept of detached threads, threads
|
||||
management.
|
||||
* Active threads registry in the kernel.
|
||||
- Rename all the kernel headers by putting "ch" in front of the name, this is
|
||||
* Rename all the kernel headers by putting "ch" in front of the name, this is
|
||||
required in order to avoid potential conflicts with external libraries, the
|
||||
current names are a bit too generic.
|
||||
- Debug-related features and tools.
|
||||
|
|
Loading…
Reference in New Issue