Skip to content

docs: Update segment register references in GDT::load* method to non-deprecated methods #301

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/structures/gdt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ impl GlobalDescriptorTable {
/// Loads the GDT in the CPU using the `lgdt` instruction. This does **not** alter any of the
/// segment registers; you **must** (re)load them yourself using [the appropriate
/// functions](crate::instructions::segmentation):
/// [load_ss](crate::instructions::segmentation::load_ss),
/// [set_cs](crate::instructions::segmentation::set_cs).
/// [SS::set_reg](crate::instructions::segmentation::SS::set_reg),
/// [CSS::set_reg](crate::instructions::segmentation::CSS::set_reg).
#[cfg(feature = "instructions")]
#[inline]
pub fn load(&'static self) {
Expand All @@ -185,8 +185,8 @@ impl GlobalDescriptorTable {
/// Loads the GDT in the CPU using the `lgdt` instruction. This does **not** alter any of the
/// segment registers; you **must** (re)load them yourself using [the appropriate
/// functions](crate::instructions::segmentation):
/// [load_ss](crate::instructions::segmentation::load_ss),
/// [set_cs](crate::instructions::segmentation::set_cs).
/// [SS::set_reg](crate::instructions::segmentation::SS::set_reg),
/// [CSS::set_reg](crate::instructions::segmentation::CSS::set_reg).
///
/// # Safety
///
Expand Down