about summary refs log tree commit diff
path: root/src/libutil/sync.hh (follow)
AgeCommit message (Collapse)AuthorFilesLines
2016-10-12 Add some functions needed by hydraEelco Dolstra1-0/+8
2016-04-08 Make LocalStore thread-safeEelco Dolstra1-3/+3
Necessary for multi-threaded commands like "nix verify-paths".
2016-02-24 std::condition_variable_any -> std::condition_variableEelco Dolstra1-10/+10
The latter is supposed to be more efficient.
2016-02-23 RemoteStore: Make thread-safeEelco Dolstra1-0/+78
This allows a RemoteStore object to be used safely from multiple threads concurrently. It will make multiple daemon connections if necessary. Note: pool.hh and sync.hh have been copied from the Hydra source tree.