aboutsummaryrefslogtreecommitdiff
path: root/src/bits64/task.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bits64/task.rs')
-rw-r--r--src/bits64/task.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bits64/task.rs b/src/bits64/task.rs
index 97d3341..fff00fe 100644
--- a/src/bits64/task.rs
+++ b/src/bits64/task.rs
@@ -1,6 +1,9 @@
//! Helpers to program the task state segment.
-use super::segmentation;
+mod segmentation {
+ pub use shared::segmentation::*;
+ pub use super::super::segmentation::*;
+}
pub type TaskStateDescriptorLow = segmentation::SegmentDescriptor;
pub type TaskStateDescriptorHigh = u64;