Subversion Repositories HelenOS-historic

Rev

Rev 1224 | Rev 1595 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1224 Rev 1264
Line 24... Line 24...
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
 
28
 
-
 
29
/**
-
 
30
 * @file    interrupt.c
-
 
31
 * @brief   Interrupt redirector.
-
 
32
 *
-
 
33
 * This file provides means of registering interrupt handlers
-
 
34
 * by kernel functions and calling the handlers when interrupts
-
 
35
 * occur.
-
 
36
 */
-
 
37
 
29
#include <interrupt.h>
38
#include <interrupt.h>
30
#include <debug.h>
39
#include <debug.h>
31
#include <console/kconsole.h>
40
#include <console/kconsole.h>
32
#include <console/console.h>
41
#include <console/console.h>
33
#include <console/chardev.h>
42
#include <console/chardev.h>