diff --git a/docs/Garbage-Collector-Lazy-Sweeping.md b/docs/Garbage-Collector-Lazy-Sweeping.md index 3afad847..128c15cb 100644 --- a/docs/Garbage-Collector-Lazy-Sweeping.md +++ b/docs/Garbage-Collector-Lazy-Sweeping.md @@ -84,7 +84,9 @@ So we now have purple (assigned the previous clear color), clear (assigned the p # Allocation -The main allocation function takes a fast or slow path depending upon whether a free slot is found on the current heap page: +The main allocation function takes a fast or slow path depending upon whether a free slot is found on the current heap page. + +The logic in simplified form is: result = try_alloc(); if (result) diff --git a/docs/images/benchmarks/Benchmark Execution Times.png b/docs/images/benchmarks/Benchmark Execution Times.png deleted file mode 100644 index dcaa3daf..00000000 Binary files a/docs/images/benchmarks/Benchmark Execution Times.png and /dev/null differ diff --git a/docs/images/benchmarks/lazy-sweep.png b/docs/images/benchmarks/lazy-sweep.png index a19e3c49..dcaa3daf 100644 Binary files a/docs/images/benchmarks/lazy-sweep.png and b/docs/images/benchmarks/lazy-sweep.png differ