diff options
author | 2016-06-29 16:19:18 -0700 | |
---|---|---|
committer | 2016-07-01 14:50:24 -0700 | |
commit | c37a7b580d528f0a4d0721702ddd645a357a405d (patch) | |
tree | 4cc74350de6782a702f002d3545378ba4d96c182 /src/bits64/task.rs | |
parent | 7234146529386a0d59817055c847b5e906ab605c (diff) | |
download | rust-x86-c37a7b580d528f0a4d0721702ddd645a357a405d.tar.gz rust-x86-c37a7b580d528f0a4d0721702ddd645a357a405d.tar.zst rust-x86-c37a7b580d528f0a4d0721702ddd645a357a405d.zip |
Combine Interface: SegmentSelector; libcpu: permissions parameter
Diffstat (limited to 'src/bits64/task.rs')
-rw-r--r-- | src/bits64/task.rs | 5 |
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; |