Rev 1597 | Rev 1705 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1597 | Rev 1702 | ||
|---|---|---|---|
| Line 23... | Line 23... | ||
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| - | 28 | /** @defgroup interrupt Interrupt |
|
| - | 29 | * @ingroup kernel |
|
| - | 30 | * @{ |
|
| - | 31 | * @} |
|
| - | 32 | */ |
|
| 28 | 33 | ||
| - | 34 | /** @addtogroup genericinterrupt generic |
|
| - | 35 | * @ingroup interrupt |
|
| - | 36 | * @{ |
|
| - | 37 | */ |
|
| 29 | /** |
38 | /** |
| 30 | * @file interrupt.c |
39 | * @file |
| 31 | * @brief Interrupt redirector. |
40 | * @brief Interrupt redirector. |
| 32 | * |
41 | * |
| 33 | * This file provides means of registering interrupt handlers |
42 | * This file provides means of registering interrupt handlers |
| 34 | * by kernel functions and calling the handlers when interrupts |
43 | * by kernel functions and calling the handlers when interrupts |
| 35 | * occur. |
44 | * occur. |
| Line 144... | Line 153... | ||
| 144 | cmd_initialize(&exc_info); |
153 | cmd_initialize(&exc_info); |
| 145 | if (!cmd_register(&exc_info)) |
154 | if (!cmd_register(&exc_info)) |
| 146 | panic("could not register command %s\n", exc_info.name); |
155 | panic("could not register command %s\n", exc_info.name); |
| 147 | } |
156 | } |
| 148 | 157 | ||
| - | 158 | ||
| - | 159 | /** @} |
|
| - | 160 | */ |
|
| - | 161 | ||