summaryrefslogtreecommitdiffstats
path: root/doc/user/intr.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-04 13:04:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-04 13:04:36 +0000
commit7e8a1fc9470db924bce49a4fce16ba98afbcf3fc (patch)
treecc6c9357d0d6bec974bfc5af38225b41a732b9ce /doc/user/intr.t
parentcorrected name of test suite (diff)
downloadrtems-7e8a1fc9470db924bce49a4fce16ba98afbcf3fc.tar.bz2
final corrections before 4.1.0 documentation freeze.
Diffstat (limited to 'doc/user/intr.t')
-rw-r--r--doc/user/intr.t8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/user/intr.t b/doc/user/intr.t
index d2226df3f6..b118f3e70b 100644
--- a/doc/user/intr.t
+++ b/doc/user/intr.t
@@ -33,6 +33,10 @@ directive:
@itemize @bullet
@item @code{interrupt_catch} - Establish an ISR
+@item @code{interrupt_disable} - Disable Interrupts
+@item @code{interrupt_enable} - Enable Interrupts
+@item @code{interrupt_flash} - Flash Interrupt
+@item @code{interrupt_is_in_progress} - Is an ISR in Progress
@end itemize
@ifinfo
@@ -315,9 +319,9 @@ procedure Interrupt_Catch (
This directive establishes an interrupt service
routine (ISR) for the specified interrupt vector number. The
-new_isr_handler parameter specifies the entry point of the ISR.
+@code{new_isr_handler} parameter specifies the entry point of the ISR.
The entry point of the previous ISR for the specified vector is
-returned in old_isr_handler.
+returned in @code{old_isr_handler}.
@subheading NOTES: