Remove finally.hh
[?]
Oct 10, 2016, 2:01 PM
3YSJ3LYKWE7ZXYGXLJI56CN6CGXXC4QO2ZDDA5VYGDSVXJ5QSIDQCDependencies
- [2]
DIEY5USNKeep better bytesReceived/bytesSent stats - [3]
FS3HUMVUFix Makefile.am - [4]
73YR46NJhydra-queue-runner: Write directly to a binary cache - [5]
GTUZLZRHAdd an S3-backed binary cache store - [6]
XLYHZUHTCache .narinfo lookups - [7]
MS676RZWRemove s3binarystore (moved to nix in d155d80) - [8]
GH4S4AWMRename file - [9]
MB3TISH2Rate-limit the number of threads copying closures at the same time - [10]
MHVIT4JYSplit hydra-queue-runner.cc more - [11]
B2L4T3X6Sync with Nix - [12]
V6H6BWMKSync with Nix - [13]
HJOEIMLRRefactor - [14]
24BMQDZAStart of single-process hydra-queue-runner - [15]
N4IROACVMove buildRemote() into State - [16]
ENXUSMSVMake concurrency more robust - [17]
YZAI5GQUImplement a database connection pool - [18]
5AIYUMTBBasic remote building - [19]
7LB6QBXYKeep track of the number of build steps that are being built - [20]
N2NKSKHSRefactor local binary cache code into a subclass
Change contents
- file deletion: finally.hh
#pragma once/* A trivial class to run a function at the end of a scope. */class Finally{private:std::function<void()> fun;public:Finally(std::function<void()> fun) : fun(fun) { }~Finally() { fun(); }}; - replacement in src/hydra-queue-runner/Makefile.am at line 5
build-result.hh counter.hh token-server.hh state.hh db.hh \finally.hhbuild-result.hh counter.hh token-server.hh state.hh db.hh