diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-04-23 23:50:12 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-05-05 22:40:37 +0200 |
commit | f6e9aa9e4554004d501dac9fd4df220db7080dec (patch) | |
tree | a4c9b03c077cbcf7d4a5d764894a3215293b6d14 /src/core/unit.h | |
parent | 4faa530cf633f9354c7368e6c1888c14c6516da0 (diff) | |
download | systemd-f6e9aa9e4554004d501dac9fd4df220db7080dec.tar.gz |
pid1: convert to the new scheme
In all the other cases, I think the code was clearer with the static table.
Here, not so much. And because of the existing dump code, the vtables cannot
be made static and need to remain exported. I still think it's worth to do the
change to have the cmdline introspection, but I'm disappointed with how this
came out.
Diffstat (limited to 'src/core/unit.h')
-rw-r--r-- | src/core/unit.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/unit.h b/src/core/unit.h index a05fd49e29..a4c342a396 100644 --- a/src/core/unit.h +++ b/src/core/unit.h @@ -600,9 +600,6 @@ typedef struct UnitVTable { * of this type will immediately fail. */ bool (*supported)(void); - /* The bus vtable */ - const sd_bus_vtable *bus_vtable; - /* The strings to print in status messages */ UnitStatusMessageFormats status_message_formats; |