| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-03-21 | Move pthread locks to own module. | Mara Bos | -144/+0 | |
| 2020-10-20 | Check that pthread mutex initialization succeeded | Tomasz Miąsko | -17/+22 | |
| If pthread mutex initialization fails, the failure will go unnoticed unless debug assertions are enabled. Any subsequent use of mutex will also silently fail, since return values from lock & unlock operations are similarly checked only through debug assertions. In some implementations the mutex initialization requires a memory allocation and so it does fail in practice. Check that initialization succeeds to ensure that mutex guarantees mutual exclusion. | ||||
| 2020-10-02 | Make it possible to have unboxed mutexes on specific platforms. | Mara Bos | -0/+2 | |
| This commit keeps all mutexes boxed on all platforms, but makes it trivial to remove the box on some platforms later. | ||||
| 2020-07-27 | mv std libs to library/ | mark | -0/+137 | |
