Skip to content

Commit 7820a00

Browse files
committed
Minor
1 parent ae90595 commit 7820a00

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

mallockit/src/space/mod.rs

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use self::page_resource::PageResource;
22
use crate::util::*;
33
use std::ops::Range;
4-
use std::ptr;
54
pub mod freelist_space;
65
pub mod immortal_space;
76
pub mod large_object_space;
@@ -72,14 +71,7 @@ pub trait Space: Sized + 'static {
7271
pub trait Allocator {
7372
fn alloc(&mut self, layout: Layout) -> Option<Address>;
7473

75-
fn alloc_zeroed(&mut self, layout: Layout) -> Option<Address> {
76-
let size = layout.size();
77-
let ptr = self.alloc(layout);
78-
if let Some(ptr) = ptr {
79-
unsafe { ptr::write_bytes(ptr.as_mut_ptr::<u8>(), 0, size) };
80-
}
81-
ptr
82-
}
83-
8474
fn dealloc(&mut self, ptr: Address);
75+
76+
// TODO: realloc
8577
}

mallockit/src/util/lazy.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ use std::mem::MaybeUninit;
44
use std::ops::{Deref, DerefMut};
55
use std::sync::atomic::*;
66

7-
const UNINITIALIZED: u8 = 0;
7+
const UNINITIALIZED: u8 = 2;
88
const INITIALIZING: u8 = 1;
9-
const INITIALIZED: u8 = 2;
9+
const INITIALIZED: u8 = 0;
1010

1111
pub trait ThreadLocality: Sized {
1212
const THREAD_LOCAL: bool;

0 commit comments

Comments
 (0)