Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rpm-software-management/createrepo_c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/dumper_thread.h')
-rw-r--r--src/dumper_thread.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/dumper_thread.h b/src/dumper_thread.h
index 6ff0694..cf9852f 100644
--- a/src/dumper_thread.h
+++ b/src/dumper_thread.h
@@ -46,7 +46,6 @@ struct PoolTask {
};
struct UserData {
- GThreadPool *pool; // thread pool
cr_XmlFile *pri_f; // Opened compressed primary.xml.*
cr_XmlFile *fil_f; // Opened compressed filelists.xml.*
cr_XmlFile *oth_f; // Opened compressed other.xml.*
@@ -81,6 +80,13 @@ struct UserData {
// Buffering
GQueue *buffer; // Buffer for done tasks
GMutex *mutex_buffer; // Mutex for accessing the buffer
+
+ // Delta generation
+ gboolean deltas; // Are deltas enabled?
+ gint64 max_delta_rpm_size; // Max size of an rpm that to run
+ // deltarpm against
+ GMutex *mutex_deltatargetpackages; // Mutex
+ GSList *deltatargetpackages; // List of cr_DeltaTargetPackages
};