aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-07-24 22:26:12 +0530
committersinanmohd <sinan@sinanmohd.com>2024-07-24 22:26:12 +0530
commita6a2e54df6cc1f716ac32f0435fcaa1f1424521e (patch)
treea11c01f142ac5b81f3768f51209b68c2e38686fd /include
parentb9846396dee20efe322d64971ee6d6fe2bc8829b (diff)
jobs: job_cost -> job_cost_recursive
Diffstat (limited to 'include')
-rw-r--r--include/jobs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jobs.h b/include/jobs.h
index cbcce74..37ba423 100644
--- a/include/jobs.h
+++ b/include/jobs.h
@@ -47,7 +47,7 @@ int job_read(FILE *stream, struct job **jobs);
/* Spawns nix-eval-jobs and connects its stdout to stream */
int jobs_init(FILE **stream, char *expr);
void job_free(struct job *j);
-int job_cost(struct job *job);
+int job_cost_recursive(struct job *job);
int job_parents_list_insert(struct job *job, struct job *parent);
void job_deps_list_rm(struct job *job, struct job *dep);
void job_stale_set(struct job *job);