ncloader  0.1
 모두 데이타 구조 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 매크로 그룹들 페이지들
isr.c 파일 참조
#include <slibc.h>
#include <sys/types.h>
#include <stdio.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdlib.h>
#include <list.h>
#include <bootm.h>
#include <errno.h>
#include <assert.h>
#include <thread.h>
#include <interrupt.h>
#include <isr.h>
#include <arch.h>
#include <x86.h>
+ isr.c에 대한 include 의존 그래프

데이타 구조

struct  irq_handler
 
struct  list
 

함수

int register_irq (int idx, int priority, int(*handler)(void *), void *data)
 인터럽트 핸들러를 등록한다. 더 자세히 ...
 
int unregister_irq (int idx, int(*handler)(void *), void *data)
 등록된 인터럽트 핸들러를 제거한다. 더 자세히 ...
 
asmlinkage struct pt_regsdo_irq (struct pt_regs *reg)
 인터럽트 요청을 처리하는 함수 더 자세히 ...