This repository was archived by the owner on Nov 27, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -37,10 +37,7 @@ Changes regarding the current `Alloc` trait
37
37
38
38
- Added an associative error type to [ ` AllocRef ` ] . Besides adding the possibility of returning additional information on
39
39
allocation failure, it's also possible to split the usage of the [ ` AllocRef ` ] into a fallible and an infallible case.
40
- Personally I think this is a pretty big deal, as kernel programmer can rely on allocation, which will never fail. If
41
- an allocation can fail, only a ` try_*_in ` method may be available. To maintain backwards compatibility, [ ` AbortAlloc ` ]
42
- was introduced. [ ` AbortAlloc ` ] wraps another allocator, but aborts on OOM thus ` AbortAlloc<Global> ` may be used as
43
- default allocator for [ ` Box ` ] or ` Vec ` . To realize this, [ ` AbortAlloc ` ] implements ` AllocRef<Error=!> ` .
40
+ Personally I think this is a pretty big deal, as kernel programmer can rely on allocation, which will never fail.
44
41
45
42
Issue: [ rust-lang/wg-allocators #23 ] ( https://github.com/rust-lang/wg-allocators/issues/23 )
46
43
@@ -55,10 +52,6 @@ Changes regarding the current `Alloc` trait
55
52
56
53
Issue: [ rust-lang/wg-allocators #5 ] ( https://github.com/rust-lang/wg-allocators/issues/5 )
57
54
58
- - Add support for ` _zeroed ` buffer in ` Vec ` .
59
-
60
- Issue: [ rust-lang/wg-allocators #32 ] ( https://github.com/rust-lang/wg-allocators/issues/32 )
61
-
62
55
Currently associated containers
63
56
-------------------------------
64
57
You can’t perform that action at this time.
0 commit comments