diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-07-03 19:16:21 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-07-03 22:28:45 +0530 |
commit | 5602a17e4c916c1fe90a0025fbdceb0621e2e9ba (patch) | |
tree | e454fdaba66a9a0d34ca2ecbde5a978ecb9f29b5 /src/jobs.c | |
parent | 4a00927f139c545288c1ae2d197d4fdc8fa36051 (diff) |
solver_greedy: init
Diffstat (limited to 'src/jobs.c')
-rw-r--r-- | src/jobs.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -370,7 +370,6 @@ static int job_new(struct job **j, char *name, char *drv_path, char *attr, job->scheduled = false; job->stale = false; job->id = -1; - job->age = 0; job->outputs_size = 0; job->outputs_filled = 0; @@ -466,4 +465,3 @@ void job_stale_set(struct job *job) for (size_t i = 0; i < job->parents_filled; i++) job_stale_set(job->parents[i]); } - |