daemon: Remove several unused instance variables
These were leftovers from the very original code which did support exit-on-idle; we're going to do it differently now. Closes: #659 Approved by: jlebon
This commit is contained in:
parent
a00b9f94fb
commit
f9944e6d96
@ -44,15 +44,6 @@ typedef struct _RpmostreedDaemonClass RpmostreedDaemonClass;
|
|||||||
struct _RpmostreedDaemon {
|
struct _RpmostreedDaemon {
|
||||||
GObject parent_instance;
|
GObject parent_instance;
|
||||||
|
|
||||||
gboolean on_message_bus;
|
|
||||||
guint use_count;
|
|
||||||
|
|
||||||
gint64 last_message;
|
|
||||||
guint ticker_id;
|
|
||||||
|
|
||||||
GMutex mutex;
|
|
||||||
gint num_tasks;
|
|
||||||
|
|
||||||
RpmostreedSysroot *sysroot;
|
RpmostreedSysroot *sysroot;
|
||||||
gchar *sysroot_path;
|
gchar *sysroot_path;
|
||||||
|
|
||||||
@ -99,11 +90,6 @@ daemon_finalize (GObject *object)
|
|||||||
|
|
||||||
g_object_unref (self->connection);
|
g_object_unref (self->connection);
|
||||||
|
|
||||||
if (self->ticker_id > 0)
|
|
||||||
g_source_remove (self->ticker_id);
|
|
||||||
|
|
||||||
g_mutex_clear (&self->mutex);
|
|
||||||
|
|
||||||
g_free (self->sysroot_path);
|
g_free (self->sysroot_path);
|
||||||
G_OBJECT_CLASS (rpmostreed_daemon_parent_class)->finalize (object);
|
G_OBJECT_CLASS (rpmostreed_daemon_parent_class)->finalize (object);
|
||||||
|
|
||||||
@ -163,12 +149,8 @@ rpmostreed_daemon_init (RpmostreedDaemon *self)
|
|||||||
g_assert (_daemon_instance == NULL);
|
g_assert (_daemon_instance == NULL);
|
||||||
_daemon_instance = self;
|
_daemon_instance = self;
|
||||||
|
|
||||||
self->num_tasks = 0;
|
|
||||||
self->last_message = g_get_monotonic_time ();
|
|
||||||
self->sysroot_path = NULL;
|
self->sysroot_path = NULL;
|
||||||
self->sysroot = NULL;
|
self->sysroot = NULL;
|
||||||
|
|
||||||
g_mutex_init (&self->mutex);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
Loading…
Reference in New Issue
Block a user