summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-27 16:02:39 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-27 16:02:39 +0000
commitcc88fb7e8401a0a2d276064d349b29bd0b01c761 (patch)
tree038856b4be8f07e8cea1a3401bb97d7a42966c24
parent8303576c15493bdf7f646d03f5478888f005bc35 (diff)
2009-02-27 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1387/doc * user/intr.t: Add Interrupt Manager services to list of services callable from ISR.
-rw-r--r--doc/ChangeLog6
-rw-r--r--doc/user/intr.t27
2 files changed, 26 insertions, 7 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 575525816d..10917d4ea0 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,9 @@
+2009-02-27 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ PR 1387/doc
+ * user/intr.t: Add Interrupt Manager services to list of services
+ callable from ISR.
+
2008-12-12 Joel Sherrill <joel.sherrill@OARcorp.com>
* user/region.t: Malloc Family is not implemented in termios of Region
diff --git a/doc/user/intr.t b/doc/user/intr.t
index a1d2196ac3..575ac09882 100644
--- a/doc/user/intr.t
+++ b/doc/user/intr.t
@@ -185,20 +185,27 @@ to the interrupted task. Most of the time, it is an application
implementation error to use RTEMS_SELF from an ISR.
@itemize -
-@item rtems_task_get_note, rtems_task_set_note, rtems_task_suspend, rtems_task_resume
+@item rtems_task_get_note
+@item rtems_task_set_note
+@item rtems_task_suspend
+@item rtems_task_resume
@end itemize
-@item Clock and Timer Management
+@item Interrupt Management
@itemize -
-@item rtems_clock_get, rtems_clock_tick
-@item rtems_timer_fire_after, rtems_timer_fire_when, rtems_timer_cancel
+@item rtems_interrupt_enable
+@item rtems_interrupt_disable
+@item rtems_interrupt_flash
+@item rtems_interrupt_is_in_progress
+@item rtems_interrupt_catch
@end itemize
@item Message, Event, and Signal Management
@itemize -
-@item rtems_message_queue_send, rtems_message_queue_urgent
+@item rtems_message_queue_send
+@item rtems_message_queue_urgent
@item rtems_event_send
@item rtems_signal_send
@end itemize
@@ -212,7 +219,8 @@ implementation error to use RTEMS_SELF from an ISR.
@item Dual-Ported Memory Management
@itemize -
-@item rtems_port_external_to_internal, rtems_port_internal_to_external
+@item rtems_port_external_to_internal
+@item rtems_port_internal_to_external
@end itemize
@item IO Management
@@ -221,7 +229,12 @@ The following services are safe to call from an ISR if and only if
the device driver service invoked is also safe. The IO Manager itself
is safe but the invoked driver entry point may or may not be.
@itemize -
-@item rtems_io_initialize, rtems_io_open, rtems_io_close, rtems_io_read, rtems_io_write, rtems_io_control
+@item rtems_io_initialize
+@item rtems_io_open
+@item rtems_io_close
+@item rtems_io_read
+@item rtems_io_write
+@item rtems_io_control
@end itemize
@item Fatal Error Management