Home
last modified time | relevance | path

Searched refs:set_system_trap_gate (Results 1 – 3 of 3) sorted by relevance

/DragonOS-0.1.8/kernel/src/exception/
Dtrap.c333 set_system_trap_gate(3, 0, int3); in sys_vector_init()
334 set_system_trap_gate(4, 0, overflow); in sys_vector_init()
335 set_system_trap_gate(5, 0, bounds); in sys_vector_init()
Dgate.h156 void set_system_trap_gate(unsigned int n, unsigned char ist, void *addr) in set_system_trap_gate() function
/DragonOS-0.1.8/kernel/src/arch/x86_64/
Dsyscall.rs10 pt_regs, set_system_trap_gate, CLONE_FS, CLONE_SIGNAL, CLONE_VM, USER_CS, USER_DS,
122 unsafe { set_system_trap_gate(0x80, 0, syscall_int as *mut c_void) }; // 系统调用门 in arch_syscall_init()