diff --git a/main/help.html b/main/help.html index eb6364d..74df204 100644 --- a/main/help.html +++ b/main/help.html @@ -1,2 +1,2 @@ -
pub fn collect()
Invokes the garbage collector.
+pub fn collect()
Invokes the garbage collector.
This function will deadlock if any CollectionGuard
s are held by the
current thread when invoked. If a guard is held, consider calling
CollectionGuard::collect()
instead.
pub fn collected<R>(wrapped: impl FnOnce() -> R) -> R
Executes wrapped
with garbage collection available.
pub fn collected<R>(wrapped: impl FnOnce() -> R) -> R
Executes wrapped
with garbage collection available.
This function installs a garbage collector for this thread, if needed. Repeated and nested calls are allowed.
Invoking CollectionGuard::acquire()
within wrapped
will return a
diff --git a/main/musegc/index.html b/main/musegc/index.html
index 63c3f9c..528e370 100644
--- a/main/musegc/index.html
+++ b/main/musegc/index.html
@@ -1,6 +1,6 @@
-