1
1
#![ feature( const_fn) ]
2
- #![ cfg_attr( feature = "alloc_ref" , feature( allocator_api, alloc_layout_extra) ) ]
2
+ #![ cfg_attr(
3
+ feature = "alloc_ref" ,
4
+ feature( allocator_api, alloc_layout_extra, nonnull_slice_from_raw_parts)
5
+ ) ]
3
6
#![ no_std]
4
7
5
8
#[ cfg( test) ]
@@ -13,7 +16,7 @@ extern crate alloc;
13
16
14
17
use alloc:: alloc:: Layout ;
15
18
#[ cfg( feature = "alloc_ref" ) ]
16
- use alloc:: alloc:: { AllocErr , AllocInit , AllocRef , MemoryBlock } ;
19
+ use alloc:: alloc:: { AllocErr , AllocRef } ;
17
20
#[ cfg( feature = "use_spin" ) ]
18
21
use core:: alloc:: GlobalAlloc ;
19
22
use core:: mem;
@@ -158,22 +161,12 @@ impl Heap {
158
161
159
162
#[ cfg( feature = "alloc_ref" ) ]
160
163
unsafe impl AllocRef for Heap {
161
- fn alloc ( & mut self , layout : Layout , init : AllocInit ) -> Result < MemoryBlock , AllocErr > {
164
+ fn alloc ( & mut self , layout : Layout ) -> Result < NonNull < [ u8 ] > , AllocErr > {
162
165
if layout. size ( ) == 0 {
163
- return Ok ( MemoryBlock {
164
- ptr : layout. dangling ( ) ,
165
- size : 0 ,
166
- } ) ;
166
+ return Ok ( NonNull :: slice_from_raw_parts ( layout. dangling ( ) , 0 ) ) ;
167
167
}
168
168
match self . allocate_first_fit ( layout) {
169
- Ok ( ptr) => {
170
- let block = MemoryBlock {
171
- ptr,
172
- size : layout. size ( ) ,
173
- } ;
174
- unsafe { init. init ( block) } ;
175
- Ok ( block)
176
- }
169
+ Ok ( ptr) => Ok ( NonNull :: slice_from_raw_parts ( ptr, layout. size ( ) ) ) ,
177
170
Err ( ( ) ) => Err ( AllocErr ) ,
178
171
}
179
172
}
0 commit comments