Browse Source

Make MemoryMapIter be Send (#29)

Theodore DeRego 7 years ago
parent
commit
08c6162e0a
1 changed files with 6 additions and 8 deletions
  1. 6 8
      src/memory_map.rs

+ 6 - 8
src/memory_map.rs

@@ -13,9 +13,8 @@ impl MemoryMapTag {
         let self_ptr = self as *const MemoryMapTag;
         let start_area = (&self.first_area) as *const MemoryArea;
         MemoryAreaIter {
-            current_area: start_area,
-            last_area: (self_ptr as u64 + (self.size - self.entry_size) as u64)
-                as *const MemoryArea,
+            current_area: start_area as u64,
+            last_area: (self_ptr as u64 + (self.size - self.entry_size) as u64),
             entry_size: self.entry_size,
         }
     }
@@ -46,8 +45,8 @@ impl MemoryArea {
 
 #[derive(Clone, Debug)]
 pub struct MemoryAreaIter {
-    current_area: *const MemoryArea,
-    last_area: *const MemoryArea,
+    current_area: u64,
+    last_area: u64,
     entry_size: u32,
 }
 
@@ -57,9 +56,8 @@ impl Iterator for MemoryAreaIter {
         if self.current_area > self.last_area {
             None
         } else {
-            let area = unsafe{&*self.current_area};
-            self.current_area = ((self.current_area as u64) + self.entry_size as u64)
-                as *const MemoryArea;
+            let area = unsafe{&*(self.current_area as *const MemoryArea)};
+            self.current_area = self.current_area + (self.entry_size as u64);
             if area.typ == 1 {
                 Some(area)
             } else {self.next()}