Home
last modified time | relevance | path

Searched refs:USER_DS (Results 1 – 4 of 4) sorted by relevance

/DragonOS/kernel/src/arch/x86_64/process/
H A Dsyscall.rs7 process::table::{USER_CS, USER_DS},
111 regs.ds = USER_DS.bits() as u64; in do_execve()
112 regs.ss = USER_DS.bits() as u64; in do_execve()
H A Dtable.rs14 pub const USER_DS: SegmentSelector = SegmentSelector::new(5, Ring::Ring3); constant
H A Dmod.rs30 table::{switch_fs_and_gs, KERNEL_DS, USER_DS},
533 arch_guard.fs = USER_DS; in arch_switch_to_user()
534 arch_guard.gs = USER_DS; in arch_switch_to_user()
/DragonOS/kernel/src/arch/x86_64/ipc/
H A Dsignal.rs10 process::table::{USER_CS, USER_DS},
673 trap_frame.ds = (USER_DS.bits() | 0x3) as u64; in setup_frame()