diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-07-23 07:12:00 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-07-23 07:13:54 +0530 |
commit | 9d292f7e22e1af751918a5ed002a90b69adf9545 (patch) | |
tree | e77aaf6109dddc3e603d3caa342bdd9dc2e94939 /include | |
parent | b6e392ce2d661eaa3adeaed44e133da9d99f95f3 (diff) |
solver_util -> jobid
Diffstat (limited to 'include')
-rw-r--r-- | include/jobid.h (renamed from include/solver_util.h) | 6 | ||||
-rw-r--r-- | include/queue.h | 1 |
2 files changed, 1 insertions, 6 deletions
diff --git a/include/solver_util.h b/include/jobid.h index 08f7f16..980c85c 100644 --- a/include/solver_util.h +++ b/include/jobid.h @@ -7,14 +7,10 @@ struct jobid { struct job **jobs; size_t filled, size; - uint32_t *cost; - /* user directly asked for this to be built, not a transitively acquired - * dependency */ - bool *isdirect; }; void jobid_free(struct jobid *jid); -int jobid_init(struct job_clist *q, struct jobid **job_ids); +int jobid_init(struct job_clist *q, struct jobid **jobid); #define SOLVER_UTIL_H #endif diff --git a/include/queue.h b/include/queue.h index ca318cf..e6178e2 100644 --- a/include/queue.h +++ b/include/queue.h @@ -5,7 +5,6 @@ #include <sys/queue.h> #include "jobs.h" -#include "solver_util.h" #ifndef QUEUE_H |