You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib.rs
+2-2
Original file line number
Diff line number
Diff line change
@@ -24,12 +24,12 @@
24
24
//! * [Allocators](util/alloc/allocator/trait.Allocator.html): handlers of allocation requests which allocate objects to the bound space.
25
25
//! * [Policies](policy/space/trait.Space.html): definitions of semantics and behaviors for memory regions.
26
26
//! Each space is an instance of a policy, and takes up a unique proportion of the heap.
27
-
//! * [Work packets](scheduler/work/trait.GCWork.html): units of GC works scheduled by the MMTk's scheduler.
27
+
//! * [Work packets](scheduler/work/trait.GCWork.html): units of GC work scheduled by the MMTk's scheduler.
28
28
//! * [GC plans](plan/global/trait.Plan.html): GC algorithms composed from components.
29
29
//! *Note that currently the choice of plans is made through Rust features, which is a build-time config, so only one plan is present in the generated binary
30
30
//! and in this documentation. We plan to make this a run-time config so that users can choose GC plans at boot time.*
31
31
//! * [Heap implementations](util/heap/index.html): the underlying implementations of memory resources that support spaces.
32
-
//! * [Scheduler](scheduler/scheduler/struct.Scheduler.html): the MMTk scheduler to allow flexible and parallel execution of GC works.
32
+
//! * [Scheduler](scheduler/scheduler/struct.Scheduler.html): the MMTk scheduler to allow flexible and parallel execution of GC work.
33
33
//! * Interfaces: bi-directional interfaces between MMTk and language implementations
34
34
//! i.e. [the memory manager API](memory_manager/index.html) that allows a language's memory manager to use MMTk
35
35
//! and [the VMBinding trait](vm/trait.VMBinding.html) that allows MMTk to call the language implementation.
0 commit comments