File tree 2 files changed +4
-12
lines changed
2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 1
1
use self :: page_resource:: PageResource ;
2
2
use crate :: util:: * ;
3
3
use std:: ops:: Range ;
4
- use std:: ptr;
5
4
pub mod freelist_space;
6
5
pub mod immortal_space;
7
6
pub mod large_object_space;
@@ -72,14 +71,7 @@ pub trait Space: Sized + 'static {
72
71
pub trait Allocator {
73
72
fn alloc ( & mut self , layout : Layout ) -> Option < Address > ;
74
73
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
-
84
74
fn dealloc ( & mut self , ptr : Address ) ;
75
+
76
+ // TODO: realloc
85
77
}
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ use std::mem::MaybeUninit;
4
4
use std:: ops:: { Deref , DerefMut } ;
5
5
use std:: sync:: atomic:: * ;
6
6
7
- const UNINITIALIZED : u8 = 0 ;
7
+ const UNINITIALIZED : u8 = 2 ;
8
8
const INITIALIZING : u8 = 1 ;
9
- const INITIALIZED : u8 = 2 ;
9
+ const INITIALIZED : u8 = 0 ;
10
10
11
11
pub trait ThreadLocality : Sized {
12
12
const THREAD_LOCAL : bool ;
You can’t perform that action at this time.
0 commit comments