]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/core/scope.h
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / core / scope.h
index 2a3dcb73d7a0c9f449fdb82090e0843ff261cfb0..7e8c47dd4265fabd4003ac8b824ec09de73426df 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 Scope Scope;
 
-#include "unit.h"
+#include "cgroup.h"
 #include "kill.h"
-
-typedef enum ScopeState {
-        SCOPE_DEAD,
-        SCOPE_RUNNING,
-        SCOPE_STOP_SIGTERM,
-        SCOPE_STOP_SIGKILL,
-        SCOPE_FAILED,
-        _SCOPE_STATE_MAX,
-        _SCOPE_STATE_INVALID = -1
-} ScopeState;
+#include "unit.h"
 
 typedef enum ScopeResult {
         SCOPE_SUCCESS,
@@ -55,15 +45,15 @@ struct Scope {
 
         usec_t timeout_stop_usec;
 
-        Set *pids;
+        char *controller;
+        bool was_abandoned;
 
-        Watch timer_watch;
+        sd_event_source *timer_event_source;
 };
 
 extern const UnitVTable scope_vtable;
 
-const char* scope_state_to_string(ScopeState i) _const_;
-ScopeState scope_state_from_string(const char *s) _pure_;
+int scope_abandon(Scope *s);
 
 const char* scope_result_to_string(ScopeResult i) _const_;
 ScopeResult scope_result_from_string(const char *s) _pure_;