aboutsummaryrefslogtreecommitdiff
path: root/std/spinlock.zig
AgeCommit message (Collapse)Author
2019-09-25mv std/ lib/Andrew Kelley
that's all this commit does. further commits will fix cli flags and such. see #2221
2019-03-02rename std lib files to new conventionAndrew Kelley
2018-11-13New Zig formal grammar (#1685)Jimmi Holst Christensen
Reverted #1628 and changed the grammar+parser of the language to not allow certain expr where types are expected
2018-10-15Solve the return type ambiguity (#1628)Jimmi Holst Christensen
Changed container and initializer syntax * <container> { ... } -> <container> . { ... } * <exrp> { ... } -> <expr> . { ...}
2018-10-03std.Mutex: implement blocking mutexes on linuxAndrew Kelley
closes #1463 Thanks to Shawn Landden for the original pull request. This commit is based on that code.