summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2011-03-07 13:54:44 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2011-03-07 13:54:44 +0000
commitbabaedefa9eb1291be9c3b58a9f9420db01f6390 (patch)
tree2077decc59ca2a74da4453604c6ebe171fa34cf7
parent2011-03-07 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-babaedefa9eb1291be9c3b58a9f9420db01f6390.tar.bz2
2011-03-07 Sebastian Huber <sebastian.huber@embedded-brains.de>
* include/rtems/irq-extension.h: Documentation. * libmisc/monitor/mon-prmisc.c: Fix for multiprocessing configuration.
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/include/rtems/irq-extension.h12
-rw-r--r--cpukit/libmisc/monitor/mon-prmisc.c2
3 files changed, 14 insertions, 5 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 179328b309..db2d226ba0 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2011-03-07 Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+ * include/rtems/irq-extension.h: Documentation.
+ * libmisc/monitor/mon-prmisc.c: Fix for multiprocessing configuration.
+
2011-03-04 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/rtems-top.m4, aclocal/version.m4:
diff --git a/cpukit/include/rtems/irq-extension.h b/cpukit/include/rtems/irq-extension.h
index 8cf6a81431..ad6f0b209c 100644
--- a/cpukit/include/rtems/irq-extension.h
+++ b/cpukit/include/rtems/irq-extension.h
@@ -108,7 +108,8 @@ typedef void (*rtems_interrupt_handler)(void *);
* installed and there is already a handler installed this shall be returned.
* @retval RTEMS_TOO_MANY If a handler with this argument is already installed
* for the vector this shall be returned.
- * @retval * Other error states are BSP specific.
+ * @retval RTEMS_IO_ERROR Reserved for board support package specific error
+ * conditions.
*/
rtems_status_code rtems_interrupt_handler_install(
rtems_vector_number vector,
@@ -133,7 +134,8 @@ rtems_status_code rtems_interrupt_handler_install(
* returned.
* @retval RTEMS_UNSATISFIED If the handler with its argument is not installed
* for the vector this shall be returned.
- * @retval * Other error states are BSP specific.
+ * @retval RTEMS_IO_ERROR Reserved for board support package specific error
+ * conditions.
*/
rtems_status_code rtems_interrupt_handler_remove(
rtems_vector_number vector,
@@ -168,7 +170,8 @@ typedef void (*rtems_interrupt_per_handler_routine)(
* context this shall be returned.
* @retval RTEMS_INVALID_ID If the vector number is out of range this shall be
* returned.
- * @retval * Other error states are BSP specific.
+ * @retval RTEMS_IO_ERROR Reserved for board support package specific error
+ * conditions.
*/
rtems_status_code rtems_interrupt_handler_iterate(
rtems_vector_number vector,
@@ -198,7 +201,8 @@ rtems_status_code rtems_interrupt_handler_iterate(
* @retval RTEMS_SUCCESSFUL Shall be returned in case of success.
* @retval RTEMS_INCORRECT_STATE If the default server is already initialized
* this shall be returned.
- * @retval * Other error states are BSP specific.
+ * @retval RTEMS_IO_ERROR Reserved for board support package specific error
+ * conditions.
*/
rtems_status_code rtems_interrupt_server_initialize(
rtems_task_priority priority,
diff --git a/cpukit/libmisc/monitor/mon-prmisc.c b/cpukit/libmisc/monitor/mon-prmisc.c
index 024e0b8787..32ee6711b4 100644
--- a/cpukit/libmisc/monitor/mon-prmisc.c
+++ b/cpukit/libmisc/monitor/mon-prmisc.c
@@ -101,7 +101,7 @@ rtems_monitor_dump_id(rtems_id id)
int
rtems_monitor_dump_name(rtems_id id)
{
- char name_buffer[18];
+ char name_buffer[18] = "????";
rtems_object_get_name( id, sizeof(name_buffer), name_buffer );