diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-07-11 13:06:42 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-07-11 13:06:42 +0530 |
commit | 3529fffd7e4e15122090bbd534c27b2f5a3a180c (patch) | |
tree | 15888ef5a9b567dbc46df5bb5067b7d99b7e2246 /include | |
parent | ed16154d1b8fed24afb32e12262210422ef99ef2 (diff) |
solver/solver_report: init
Diffstat (limited to 'include')
-rw-r--r-- | include/evanix.h | 1 | ||||
-rw-r--r-- | include/jobs.h | 1 |
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); |