aboutsummaryrefslogtreecommitdiff
path: root/src/libmain/shared.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmain/shared.cc')
-rw-r--r--src/libmain/shared.cc22
1 files changed, 4 insertions, 18 deletions
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc
index e883967b7..0b6311516 100644
--- a/src/libmain/shared.cc
+++ b/src/libmain/shared.cc
@@ -24,15 +24,9 @@
namespace nix {
-volatile sig_atomic_t blockInt = 0;
-
-
static void sigintHandler(int signo)
{
- if (!blockInt) {
- _isInterrupted = 1;
- blockInt = 1;
- }
+ _isInterrupted = 1;
}
@@ -117,11 +111,7 @@ void initNix()
std::cerr.rdbuf()->pubsetbuf(buf, sizeof(buf));
#endif
- // FIXME: do we need this? It's not thread-safe.
- std::ios::sync_with_stdio(false);
-
- if (getEnv("IN_SYSTEMD") == "1")
- logType = ltSystemd;
+ logger = makeDefaultLogger();
/* Initialise OpenSSL locking. */
opensslLocks = std::vector<std::mutex>(CRYPTO_num_locks());
@@ -181,10 +171,7 @@ struct LegacyArgs : public MixCommonArgs
: MixCommonArgs(programName), parseArg(parseArg)
{
mkFlag('Q', "no-build-output", "do not show build output",
- &settings.buildVerbosity, lvlVomit);
-
- mkFlag(0, "print-build-trace", "emit special build trace message",
- &settings.printBuildTrace);
+ &settings.verboseBuild, false);
mkFlag('K', "keep-failed", "keep temporary directories of failed builds",
&settings.keepFailed);
@@ -290,8 +277,7 @@ int handleExceptions(const string & programName, std::function<void()> fun)
condition is discharged before we reach printMsg()
below, since otherwise it will throw an (uncaught)
exception. */
- blockInt = 1; /* ignore further SIGINTs */
- _isInterrupted = 0;
+ interruptThrown = true;
throw;
}
} catch (Exit & e) {