Skip to content

Commit 564c88b

Browse files
authored
Update README.md (#698)
1 parent 4efc0e7 commit 564c88b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/release/0.7/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To address this, we analysed what was doing while holding the lock.
4040
We found that we were doing a several things that were causing more time to be spent inside the lock than was necessary.
4141
Overall, we improve the start-up time of `snmalloc` in high thread scenarios as follows:
4242

43-
We have a particularly tough benchmark for testing [startup time](../src/test/perf/startup/startup.cc).
43+
We have a particularly tough benchmark for testing [startup time](../../../src/test/perf/startup/startup.cc).
4444
We used a machine with 72 hardware threads.
4545
The benchmark causes all the threads to synchronise on starting their first allocation.
4646
This means all 72 threads are contending on the lock at the same time to get their allocator initialised.
@@ -121,7 +121,7 @@ It does not increase the size of the pagemap.
121121

122122
We have built a simple example inspired by Google's `miracle_ptr`,
123123
that uses this feature to provide the reference counting for all allocations, but out-of-band.
124-
See [miracle_ptr](../src/test/func/miracle_ptr/miracle_ptr.cc) for our current experiment.
124+
See [miracle_ptr](../../../src/test/func/miracle_ptr/miracle_ptr.cc) for our current experiment.
125125
We are still experimenting with this feature, and would love to hear your feedback.
126126

127127
## Conclusion

0 commit comments

Comments
 (0)