diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2012-04-20 10:21:37 +0200 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2012-04-20 17:12:27 +0200 |
commit | 97e7d748d1bf26790fc3b2607885f4ac8c4ecf3a (patch) | |
tree | bbabe2eb9589c28da467ba4e0d510ac7cd65e98f /src/core/job.c | |
parent | 121b3b318042b7fd67ac96601971c1c2f9b77be5 (diff) |
job: job_uninstall()
Split the uninstallation of the job from job_free() into a separate function.
Adjust the callers.
job_free() now only works on unlinked and uninstalled jobs. This enforces clear
thinking about job lifetimes.
Diffstat (limited to 'src/core/job.c')
-rw-r--r-- | src/core/job.c | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/src/core/job.c b/src/core/job.c index 5ea717eae1..9199cf6a4b 100644 --- a/src/core/job.c +++ b/src/core/job.c @@ -55,22 +55,24 @@ Job* job_new(Manager *m, JobType type, Unit *unit) { return j; } -void job_free(Job *j) { - assert(j); - +void job_uninstall(Job *j) { + assert(j->installed); /* Detach from next 'bigger' objects */ - if (j->installed) { - bus_job_send_removed_signal(j); - if (j->unit->job == j) { - j->unit->job = NULL; - unit_add_to_gc_queue(j->unit); - } + bus_job_send_removed_signal(j); - hashmap_remove(j->manager->jobs, UINT32_TO_PTR(j->id)); - j->installed = false; + if (j->unit->job == j) { + j->unit->job = NULL; + unit_add_to_gc_queue(j->unit); } + hashmap_remove(j->manager->jobs, UINT32_TO_PTR(j->id)); + j->installed = false; +} + +void job_free(Job *j) { + assert(j); + assert(!j->installed); assert(!j->transaction_prev); assert(!j->transaction_next); assert(!j->subject_list); @@ -492,6 +494,7 @@ int job_finish_and_invalidate(Job *j, JobResult result) { u = j->unit; t = j->type; + job_uninstall(j); job_free(j); job_print_status_message(u, t, result); |