File tree 2 files changed +2
-7
lines changed
2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,7 @@ It provides high-level, safe abstractions:
16
16
* an implementation of internal iterators, also known as generators,
17
17
[ Generator] ( https://nathan7.github.io/libfringe/fringe/generator/struct.Generator.html ) .
18
18
19
- It also provides low-level, * very* unsafe building blocks:
20
- * a flexible, low-level context-swapping mechanism,
21
- [ Context] ( https://nathan7.github.io/libfringe/fringe/struct.Context.html ) ;
19
+ It also provides low-level, unsafe building blocks:
22
20
* a trait that can be implemented by stack allocators,
23
21
[ Stack] ( https://nathan7.github.io/libfringe/fringe/struct.Stack.html ) ;
24
22
* a stack allocator based on anonymous memory mappings with guard pages,
Original file line number Diff line number Diff line change 16
16
//! * an implementation of internal iterators, also known as generators,
17
17
//! [Generator](generator/struct.Generator.html).
18
18
//!
19
- //! It also provides low-level, *very* unsafe building blocks:
19
+ //! It also provides low-level, unsafe building blocks:
20
20
//!
21
- //! * a flexible, low-level context-swapping mechanism,
22
- //! [Context](struct.Context.html);
23
21
//! * a trait that can be implemented by stack allocators,
24
22
//! [Stack](struct.Stack.html);
25
23
//! * a stack allocator based on anonymous memory mappings with guard pages,
@@ -33,7 +31,6 @@ extern crate std;
33
31
34
32
pub use stack:: Stack ;
35
33
pub use stack:: GuardedStack ;
36
- pub use context:: Context ;
37
34
pub use generator:: Generator ;
38
35
39
36
#[ cfg( any( unix, windows) ) ]
You can’t perform that action at this time.
0 commit comments