1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 #pragma once 3 4 #include "manager.h" 5 6 int manager_varlink_init(Manager *m); 7 void manager_varlink_done(Manager *m); 8 9 /* The manager is expected to send an update to systemd-oomd if one of the following occurs: 10 * - The value of ManagedOOM*= properties change 11 * - A unit with ManagedOOM*= properties changes unit active state */ 12 int manager_varlink_send_managed_oom_update(Unit *u); 13