Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
New structure to store job request.
Vsevolod Stakhov committed 11 years ago
commit a8c6aa2897461557389f096103a02394bb2fac78
parent edc0398
1 file changed +7 -1
modified libpkg/private/pkg_jobs.h
@@ -47,8 +47,14 @@ struct pkg_job_universe_item {
	struct pkg_job_universe_item *next, *prev;
};

+
struct pkg_job_request_item {
+
	struct pkg *p;
+
	struct pkg_job_universe_item *unit;
+
	struct pkg_job_request_item *prev, *next;
+
};
+

struct pkg_job_request {
-
	struct pkg_job_universe_item *item;
+
	struct pkg_job_request_item *item;
	bool skip;
	UT_hash_handle hh;
};