summaryrefslogtreecommitdiffstats
path: root/src/core/job.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-12-10 18:52:28 +0100
committerLennart Poettering <lennart@poettering.net>2018-12-12 11:15:06 +0100
commit4a53080be637f6dad91515fc896d9f77fbc17f0c (patch)
treea7bdaf06fd3346cabc7461425cf53cbd3535195e /src/core/job.h
parentjob: update job_free() to follow our usual return-NULL style (diff)
downloadsystemd-4a53080be637f6dad91515fc896d9f77fbc17f0c.tar.xz
systemd-4a53080be637f6dad91515fc896d9f77fbc17f0c.zip
core: don't track jobs-finishing-during-reload explicitly
Memory management is borked for this, and moreover this is unnecessary since f0831ed2a03, i.e. since coldplug() and catchup() are two different concepts: the former restoring the state from before a reload, the latter than adjusting it again to the actual status in effect after the reload. Fixes: #10716 Mostly reverts: #8803
Diffstat (limited to 'src/core/job.h')
-rw-r--r--src/core/job.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/job.h b/src/core/job.h
index 1f5bce85a4..649f812a57 100644
--- a/src/core/job.h
+++ b/src/core/job.h
@@ -156,7 +156,6 @@ struct Job {
bool irreversible:1;
bool in_gc_queue:1;
bool ref_by_private_bus:1;
- bool reloaded:1;
};
Job* job_new(Unit *unit, JobType type);