mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
f4d74c6105
Documentation is licensed under LGPL-2.1-or-later. Scripts are MIT to facilitate reuse. Examples are relicensed to CC0-1.0 to maximise copy-and-paste for users, with permission from authors.
19 lines
539 B
C
19 lines
539 B
C
/* SPDX-License-Identifier: CC0-1.0 */
|
|
|
|
#include <systemd/sd-bus.h>
|
|
#define _cleanup_(f) __attribute__((cleanup(f)))
|
|
|
|
int send_unit_files_changed(sd_bus *bus) {
|
|
_cleanup_(sd_bus_message_unrefp) sd_bus_message *message = NULL;
|
|
int r;
|
|
|
|
r = sd_bus_message_new_signal(bus, &message,
|
|
"/org/freedesktop/systemd1",
|
|
"org.freedesktop.systemd1.Manager",
|
|
"UnitFilesChanged");
|
|
if (r < 0)
|
|
return r;
|
|
|
|
return sd_bus_send(bus, message, NULL);
|
|
}
|