summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-07-11 13:06:42 +0530
committersinanmohd <sinan@sinanmohd.com>2024-07-11 13:06:42 +0530
commit3529fffd7e4e15122090bbd534c27b2f5a3a180c (patch)
tree15888ef5a9b567dbc46df5bb5067b7d99b7e2246 /include
parented16154d1b8fed24afb32e12262210422ef99ef2 (diff)
solver/solver_report: init
Diffstat (limited to 'include')
-rw-r--r--include/evanix.h1
-rw-r--r--include/jobs.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/evanix.h b/include/evanix.h
index 1e24590..46879ad 100644
--- a/include/evanix.h
+++ b/include/evanix.h
@@ -7,6 +7,7 @@ struct evanix_opts_t {
bool isflake;
bool isdryrun;
bool ispipelined;
+ bool solver_report;
bool close_unused_fd;
char *system;
uint32_t max_build;
diff --git a/include/jobs.h b/include/jobs.h
index ccdff65..dc6fc36 100644
--- a/include/jobs.h
+++ b/include/jobs.h
@@ -28,6 +28,7 @@ struct job {
/* solver */
ssize_t id;
bool stale;
+ bool reported;
};
CIRCLEQ_HEAD(job_clist, job);