Remove finally.hh
[?]
Oct 10, 2016, 2:01 PM
3YSJ3LYKWE7ZXYGXLJI56CN6CGXXC4QO2ZDDA5VYGDSVXJ5QSIDQCDependencies
- [2]
DIEY5USNKeep better bytesReceived/bytesSent stats - [3]
FS3HUMVUFix Makefile.am - [4]
MHVIT4JYSplit hydra-queue-runner.cc more - [5]
B2L4T3X6Sync with Nix - [6]
7LB6QBXYKeep track of the number of build steps that are being built - [7]
YZAI5GQUImplement a database connection pool - [8]
5AIYUMTBBasic remote building - [9]
N2NKSKHSRefactor local binary cache code into a subclass - [10]
73YR46NJhydra-queue-runner: Write directly to a binary cache - [11]
24BMQDZAStart of single-process hydra-queue-runner - [12]
MB3TISH2Rate-limit the number of threads copying closures at the same time - [13]
GH4S4AWMRename file - [14]
XLYHZUHTCache .narinfo lookups - [15]
ENXUSMSVMake concurrency more robust - [16]
N4IROACVMove buildRemote() into State - [17]
GTUZLZRHAdd an S3-backed binary cache store - [18]
V6H6BWMKSync with Nix - [19]
HJOEIMLRRefactor - [20]
MS676RZWRemove s3binarystore (moved to nix in d155d80)
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