Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-14 | Decided I don't need a `wg:clear` function | Teddy Wing | |
It works find with just `done`. | |||
2021-02-06 | wait: Exit when `<= 0` instead of `= 0` | Teddy Wing | |
Just in case the counter becomes negative before the loop condition runs. | |||
2021-02-06 | Add `print-object` on `wait-group` | Teddy Wing | |
Print the object including the `counter` slot. | |||
2021-02-06 | Add documentation tasks | Teddy Wing | |
2021-01-31 | Define a library for Go-style wait groups | Teddy Wing | |
Define a data structure and methods to represent a Go-style wait group, similar to `sync.WaitGroup` (except single-threaded). Implements a similar interface. Calling `wait` blocks until the wait group's internal counter gets to 0. |