diff --git a/README.md b/README.md index 98c55ef..bd53f75 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,10 @@ zone1.execute( ``` More examples: * [Estimate PI in parallel](./examples/tutorial/estimate-pi-in-parallel) +* [Max sub-matrix of 1s with layered parallelism](./examples/tutorial/max-square-sub-matrix) * [Parallel Quick Sort](./examples/tutorial/parallel-quick-sort) * [Recursive Fibonacci with multiple JavaScript threads](./examples/tutorial/recursive-fibonacci) -* [Max sub-matrix of 1s with layered parallelism](./examples/tutorial/max-square-sub-matrix) +* [Synchronized loading](./examples/tutorial/synchronized-loading) ## Features - Multi-threaded JavaScript runtime diff --git a/docs/api/sync.md b/docs/api/sync.md index f9dbf07..e92c7ea 100644 --- a/docs/api/sync.md +++ b/docs/api/sync.md @@ -35,6 +35,9 @@ catch(error) { console.log(error); } ``` + +An example [Synchronized Loading](./../../examples/tutorial/synchronized-loading) demonstrated how to implement a shared, lazy-loading phone book. +