]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/machine/machined.h
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / machine / machined.h
index dac7a29ed193da0c39d2c7c925d1247341a73339..b00c4c182e314cd5abc5a2264fcb316679f426e3 100644 (file)
@@ -1,5 +1,4 @@
-/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
-
+/* SPDX-License-Identifier: LGPL-2.1+ */
 #pragma once
 
 /***
 
 typedef struct Manager Manager;
 
-#include "machine.h"
-#include "machine-dbus.h"
 #include "image-dbus.h"
+#include "machine-dbus.h"
+#include "machine.h"
+#include "operation.h"
 
 struct Manager {
         sd_event *event;
@@ -51,6 +51,9 @@ struct Manager {
         LIST_HEAD(Machine, machine_gc_queue);
 
         Machine *host_machine;
+
+        LIST_HEAD(Operation, operations);
+        unsigned n_operations;
 };
 
 Manager *manager_new(void);