summaryrefslogtreecommitdiffstats
path: root/doc/itron3.0/interrupt.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-26 18:20:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-26 18:20:40 +0000
commit110bdfe6940c766b7960b68ab36f761e2d3d279a (patch)
treea2778aa6d0bac672c5e3c7a00523f4b770f5b626 /doc/itron3.0/interrupt.t
parentPrototypes are now based on how the TRON specification states them. (diff)
downloadrtems-110bdfe6940c766b7960b68ab36f761e2d3d279a.tar.bz2
Made the gen_section more accurate.
Diffstat (limited to 'doc/itron3.0/interrupt.t')
-rw-r--r--doc/itron3.0/interrupt.t54
1 files changed, 27 insertions, 27 deletions
diff --git a/doc/itron3.0/interrupt.t b/doc/itron3.0/interrupt.t
index 11b6d9adf0..d7589e393a 100644
--- a/doc/itron3.0/interrupt.t
+++ b/doc/itron3.0/interrupt.t
@@ -16,15 +16,15 @@ interrupt manager is ...
The services provided by the interrupt manager are:
@itemize @bullet
-@item @code{def_int} - Define Interrupt Handler
-@item @code{ret_int} - Return from Interrupt Handler
-@item @code{ret_wup} - Return and Wakeup Task
-@item @code{loc_cpu} - Lock CPU
-@item @code{unl_cpu} - Unlock CPU
-@item @code{dis_int} - Disable Interrupt
-@item @code{ena_int} - Enable Interrupt
-@item @code{chg_iXX} - Change Interrupt Mask (Level or Priority)
-@item @code{ref_iXX} - Reference Interrupt Mask (Level or Priority)
+@item @code{def_int} - Define Interrupt Handler
+@item @code{ret_int} - Return from Interrupt Handler
+@item @code{ret_wup} - Return and Wakeup Task
+@item @code{loc_cpu} - Lock CPU
+@item @code{unl_cpu} - Unlock CPU
+@item @code{dis_int} - Disable Interrupt
+@item @code{ena_int} - Enable Interrupt
+@item @code{chg_iXX} - Change Interrupt Mask (Level or Priority)
+@item @code{ref_iXX} - Reference Interrupt Mask (Level or Priority)
@end itemize
@section Background
@@ -44,14 +44,14 @@ and status codes.
@c
@page
-@subsection def_int - Define Interrupt Handler
+@subsection def_int - Define Interrupt Handler
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER def_int (
- UINT dintno, T_DINT *pk_dint
+ UINT dintno, T_DINT *pk_dint
);
@end example
@end ifset
@@ -73,14 +73,14 @@ ER def_int (
@c
@page
-@subsection ret_int - Return from Interrupt Handler
+@subsection ret_int - Return from Interrupt Handler
@subheading CALLING SEQUENCE:
@ifset is-C
@example
void ret_int (
-
+
);
@end example
@end ifset
@@ -102,14 +102,14 @@ void ret_int (
@c
@page
-@subsection ret_wup - Return and Wakeup Task
+@subsection ret_wup - Return and Wakeup Task
@subheading CALLING SEQUENCE:
@ifset is-C
@example
void ret_wup (
- ID tskid
+ ID tskid
);
@end example
@end ifset
@@ -131,14 +131,14 @@ void ret_wup (
@c
@page
-@subsection loc_cpu - Lock CPU
+@subsection loc_cpu - Lock CPU
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER loc_cpu (
-
+
);
@end example
@end ifset
@@ -160,14 +160,14 @@ ER loc_cpu (
@c
@page
-@subsection unl_cpu - Unlock CPU
+@subsection unl_cpu - Unlock CPU
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER unl_cpu (
-
+
);
@end example
@end ifset
@@ -189,14 +189,14 @@ ER unl_cpu (
@c
@page
-@subsection dis_int - Disable Interrupt
+@subsection dis_int - Disable Interrupt
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER dis_int (
- UINT eintno
+ UINT eintno
);
@end example
@end ifset
@@ -218,14 +218,14 @@ ER dis_int (
@c
@page
-@subsection ena_int - Enable Interrupt
+@subsection ena_int - Enable Interrupt
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER ena_int (
- UINT eintno
+ UINT eintno
);
@end example
@end ifset
@@ -247,14 +247,14 @@ ER ena_int (
@c
@page
-@subsection chg_iXX - Change Interrupt Mask (Level or Priority)
+@subsection chg_iXX - Change Interrupt Mask (Level or Priority)
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER chg_iXX (
- UINT iXXXX
+ UINT iXXXX
);
@end example
@end ifset
@@ -276,14 +276,14 @@ ER chg_iXX (
@c
@page
-@subsection ref_iXX - Reference Interrupt Mask (Level or Priority)
+@subsection ref_iXX - Reference Interrupt Mask (Level or Priority)
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER ref_iXX (
- UINT *p_iXXXX
+ UINT *p_iXXXX
);
@end example
@end ifset