diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2012-04-18 15:21:24 +0200 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2012-04-20 17:12:28 +0200 |
commit | 1da4264fbd0fa5e6b1bd5e0ac4674a3503774369 (patch) | |
tree | fd7939f6bf107bb97a5ff090f9dfe25773dfb205 /src/core/job.c | |
parent | 668ad332a404736474749cbcc8404af3e4447170 (diff) |
job: jobs shouldn't need to know about transaction anchors
Let the transactions maintain their own anchor links.
Diffstat (limited to 'src/core/job.c')
-rw-r--r-- | src/core/job.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/core/job.c b/src/core/job.c index bfb6b7443a..18ec823ebe 100644 --- a/src/core/job.c +++ b/src/core/job.c @@ -96,7 +96,7 @@ void job_free(Job *j) { free(j); } -JobDependency* job_dependency_new(Job *subject, Job *object, bool matters, bool conflicts, Transaction *tr) { +JobDependency* job_dependency_new(Job *subject, Job *object, bool matters, bool conflicts) { JobDependency *l; assert(object); @@ -116,21 +116,17 @@ JobDependency* job_dependency_new(Job *subject, Job *object, bool matters, bool if (subject) LIST_PREPEND(JobDependency, subject, subject->subject_list, l); - else - LIST_PREPEND(JobDependency, subject, tr->anchor, l); LIST_PREPEND(JobDependency, object, object->object_list, l); return l; } -void job_dependency_free(JobDependency *l, Transaction *tr) { +void job_dependency_free(JobDependency *l) { assert(l); if (l->subject) LIST_REMOVE(JobDependency, subject, l->subject->subject_list, l); - else - LIST_REMOVE(JobDependency, subject, tr->anchor, l); LIST_REMOVE(JobDependency, object, l->object->object_list, l); |