summaryrefslogtreecommitdiff
path: root/src/machine/machined.h
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2016-05-02 13:56:07 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2016-05-02 13:56:07 -0400
commit8ad54a01825f962458cfac9e5a62e7268ac2fa05 (patch)
treed291750e20dc93c40871f24815104f455dd71711 /src/machine/machined.h
parent33e40442c6c5d296dfaa733b8429bff1a24869cc (diff)
parentd13febb1e0d17ce11cfa904085c91e98d336f476 (diff)
Merge pull request #3153 from poettering/async-clone
machined: make "clone" asynchronous, and support copy-based fall-back
Diffstat (limited to 'src/machine/machined.h')
-rw-r--r--src/machine/machined.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/machine/machined.h b/src/machine/machined.h
index e7d7dfdceb..7b9b148044 100644
--- a/src/machine/machined.h
+++ b/src/machine/machined.h
@@ -32,6 +32,7 @@ typedef struct Manager Manager;
#include "image-dbus.h"
#include "machine-dbus.h"
#include "machine.h"
+#include "operation.h"
struct Manager {
sd_event *event;
@@ -49,6 +50,9 @@ struct Manager {
LIST_HEAD(Machine, machine_gc_queue);
Machine *host_machine;
+
+ LIST_HEAD(Operation, operations);
+ unsigned n_operations;
};
Manager *manager_new(void);