summaryrefslogtreecommitdiffstats
path: root/c_user/interrupt_manager.rst
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-02-18 15:41:28 +1100
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:26 -0400
commit25d55d49c3f52a12a52def776104e0c9c721e680 (patch)
tree659abcd9eefe270c58fe9f7027fe192f08d95b20 /c_user/interrupt_manager.rst
parentFix double quotes. (diff)
downloadrtems-docs-25d55d49c3f52a12a52def776104e0c9c721e680.tar.bz2
Change code to code-block.
Diffstat (limited to 'c_user/interrupt_manager.rst')
-rw-r--r--c_user/interrupt_manager.rst26
1 files changed, 13 insertions, 13 deletions
diff --git a/c_user/interrupt_manager.rst b/c_user/interrupt_manager.rst
index b1b95a1..de330fd 100644
--- a/c_user/interrupt_manager.rst
+++ b/c_user/interrupt_manager.rst
@@ -65,7 +65,7 @@ a prototype similar to the following:
.. index:: rtems_isr
-.. code:: c
+.. code-block:: c
rtems_isr user_isr(
rtems_vector_number vector
@@ -268,7 +268,7 @@ INTERRUPT_CATCH - Establish an ISR
.. index:: rtems_interrupt_catch
-.. code:: c
+.. code-block:: c
rtems_status_code rtems_interrupt_catch(
rtems_isr_entry new_isr_handler,
@@ -312,7 +312,7 @@ INTERRUPT_DISABLE - Disable Interrupts
.. index:: rtems_interrupt_disable
-.. code:: c
+.. code-block:: c
void rtems_interrupt_disable(
rtems_interrupt_level level
@@ -350,7 +350,7 @@ INTERRUPT_ENABLE - Enable Interrupts
.. index:: rtems_interrupt_enable
-.. code:: c
+.. code-block:: c
void rtems_interrupt_enable(
rtems_interrupt_level level
@@ -385,7 +385,7 @@ INTERRUPT_FLASH - Flash Interrupts
.. index:: rtems_interrupt_flash
-.. code:: c
+.. code-block:: c
void rtems_interrupt_flash(
rtems_interrupt_level level
@@ -421,7 +421,7 @@ INTERRUPT_LOCAL_DISABLE - Disable Interrupts on Current Processor
.. index:: rtems_interrupt_local_disable
-.. code:: c
+.. code-block:: c
void rtems_interrupt_local_disable(
rtems_interrupt_level level
@@ -459,7 +459,7 @@ INTERRUPT_LOCAL_ENABLE - Enable Interrupts on Current Processor
.. index:: rtems_interrupt_local_enable
-.. code:: c
+.. code-block:: c
void rtems_interrupt_local_enable(
rtems_interrupt_level level
@@ -490,7 +490,7 @@ INTERRUPT_LOCK_INITIALIZE - Initialize an ISR Lock
.. index:: rtems_interrupt_lock_initialize
-.. code:: c
+.. code-block:: c
void rtems_interrupt_lock_initialize(
rtems_interrupt_lock *lock
@@ -517,7 +517,7 @@ INTERRUPT_LOCK_ACQUIRE - Acquire an ISR Lock
.. index:: rtems_interrupt_lock_acquire
-.. code:: c
+.. code-block:: c
void rtems_interrupt_lock_acquire(
rtems_interrupt_lock *lock,
@@ -547,7 +547,7 @@ INTERRUPT_LOCK_RELEASE - Release an ISR Lock
.. index:: rtems_interrupt_lock_release
-.. code:: c
+.. code-block:: c
void rtems_interrupt_lock_release(
rtems_interrupt_lock *lock,
@@ -577,7 +577,7 @@ INTERRUPT_LOCK_ACQUIRE_ISR - Acquire an ISR Lock from ISR
.. index:: rtems_interrupt_lock_acquire_isr
-.. code:: c
+.. code-block:: c
void rtems_interrupt_lock_acquire_isr(
rtems_interrupt_lock *lock,
@@ -611,7 +611,7 @@ INTERRUPT_LOCK_RELEASE_ISR - Release an ISR Lock from ISR
.. index:: rtems_interrupt_lock_release_isr
-.. code:: c
+.. code-block:: c
void rtems_interrupt_lock_release_isr(
rtems_interrupt_lock *lock,
@@ -642,7 +642,7 @@ INTERRUPT_IS_IN_PROGRESS - Is an ISR in Progress
.. index:: rtems_interrupt_is_in_progress
-.. code:: c
+.. code-block:: c
bool rtems_interrupt_is_in_progress(void);