diff options
Diffstat (limited to 'os/kernel/templates')
-rw-r--r-- | os/kernel/templates/chconf.h | 4 | ||||
-rw-r--r-- | os/kernel/templates/chcore.c | 16 | ||||
-rw-r--r-- | os/kernel/templates/chcore.h | 6 | ||||
-rw-r--r-- | os/kernel/templates/chtypes.h | 2 |
4 files changed, 14 insertions, 14 deletions
diff --git a/os/kernel/templates/chconf.h b/os/kernel/templates/chconf.h index 6f8233b7f..02d38baf4 100644 --- a/os/kernel/templates/chconf.h +++ b/os/kernel/templates/chconf.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -404,7 +404,7 @@ * @brief Debug option, stacks initialization.
* @details If enabled then the threads working area is filled with a byte
* value when a thread is created. This can be useful for the
- * runtime measurement of the used stack. + * runtime measurement of the used stack.
*
* @note The default is @p FALSE.
*/
diff --git a/os/kernel/templates/chcore.c b/os/kernel/templates/chcore.c index d1bad3c02..2bca5eb6c 100644 --- a/os/kernel/templates/chcore.c +++ b/os/kernel/templates/chcore.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -33,7 +33,7 @@ /**
* @brief Port-related initialization code.
- * @note This function is usually empty. + * @note This function is usually empty.
*/
void port_init(void) {
}
@@ -41,7 +41,7 @@ void port_init(void) { /**
* @brief Kernel-lock action.
* @details Usually this function just disables interrupts but may perform more
- * actions. + * actions.
*/
void port_lock(void) {
}
@@ -74,20 +74,20 @@ void port_unlock_from_isr(void) { /**
* @brief Disables all the interrupt sources.
- * @note Of course non maskable interrupt sources are not included. + * @note Of course non maskable interrupt sources are not included.
*/
void port_disable(void) {
}
/**
* @brief Disables the interrupt sources that are not supposed to preempt
- * the kernel. + * the kernel.
*/
void port_suspend(void) {
}
/**
- * @brief Enables all the interrupt sources. + * @brief Enables all the interrupt sources.
*/
void port_enable(void) {
}
@@ -97,7 +97,7 @@ void port_enable(void) { * @details The function is meant to return when an interrupt becomes pending.
* The simplest implementation is an empty function or macro but this
* would not take advantage of architecture-specific power saving
- * modes. + * modes.
*/
void port_wait_for_interrupt(void) {
}
@@ -107,7 +107,7 @@ void port_wait_for_interrupt(void) { * @details This function is invoked by the operating system when an
* unrecoverable error is detected (as example because a programming
* error in the application code that triggers an assertion while in
- * debug mode). + * debug mode).
*/
void port_halt(void) {
diff --git a/os/kernel/templates/chcore.h b/os/kernel/templates/chcore.h index bf72fc042..0e78dbcf5 100644 --- a/os/kernel/templates/chcore.h +++ b/os/kernel/templates/chcore.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -41,7 +41,7 @@ #define CH_ARCHITECTURE_NAME ""
/**
- * @brief Name of the architecture variant (optional). + * @brief Name of the architecture variant (optional).
*/
#define CH_ARCHITECTURE_VARIANT_NAME ""
@@ -144,7 +144,7 @@ struct context { /**
* @brief IRQ handler function declaration.
* @note @p id can be a function name or a vector number depending on the
- * port implementation. + * port implementation.
*/
#define PORT_IRQ_HANDLER(id) void id(void)
diff --git a/os/kernel/templates/chtypes.h b/os/kernel/templates/chtypes.h index f790d847c..5c771e999 100644 --- a/os/kernel/templates/chtypes.h +++ b/os/kernel/templates/chtypes.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
|