* include/rtems/irq-extension.h: Documentation.
	* libmisc/monitor/mon-prmisc.c: Fix for multiprocessing configuration.
This commit is contained in:
Sebastian Huber
2011-03-07 13:54:44 +00:00
parent 48588ab33d
commit babaedefa9
3 changed files with 14 additions and 5 deletions

View File

@@ -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:

View File

@@ -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,

View File

@@ -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 );