about summary refs log tree commit diff
path: root/src/libutil/sync.hh
AgeCommit message (Collapse)AuthorFilesLines
2018-06-18 sync.hh: return cv_status instead of dropping it, in case useful.Will Dietz1-2/+2
2017-08-03 Include missing <cstdlib> for abort()Brian McKenna1-0/+1
This is needed to get Nix compiled using Android NDK.
2017-04-06 nix-daemon: Disable path info cacheEelco Dolstra1-0/+1
This is useless because the client also caches path info, and can cause problems for long-running clients like hydra-queue-runner (i.e. it may return cached info about paths that have been garbage-collected).
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.