diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-01-11 00:39:12 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-01-11 14:44:31 +0100 |
commit | dccca82b1a28c861a466a0905faee19ee009429a (patch) | |
tree | e6933b1f4ba8b9cd2c076c98c55e08f5ac72a1db /src/basic/time-util.c | |
parent | 1a86b085138234c9166614adc5ad399a19dae84b (diff) | |
download | systemd-dccca82b1a28c861a466a0905faee19ee009429a.tar.gz |
log: minimize includes in log.h
log.h really should only include the bare minimum of other headers, as
it is really pulled into pretty much everything else and already in
itself one of the most basic pieces of code we have.
Let's hence drop inclusion of:
1. sd-id128.h because it's entirely unneeded in current log.h
2. errno.h, dito.
3. sys/signalfd.h which we can replace by a simple struct forward
declaration
4. process-util.h which was needed for getpid_cached() which we now hide
in a funciton log_emergency_level() instead, which nicely abstracts
the details away.
5. sys/socket.h which was needed for struct iovec, but a simple struct
forward declaration suffices for that too.
Ultimately this actually makes our source tree larger (since users of
the functionality above must now include it themselves, log.h won't do
that for them), but I think it helps to untangle our web of includes a
tiny bit.
(Background: I'd like to isolate the generic bits of src/basic/ enough
so that we can do a git submodule import into casync for it)
Diffstat (limited to 'src/basic/time-util.c')
-rw-r--r-- | src/basic/time-util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/basic/time-util.c b/src/basic/time-util.c index cbb5285018..4a341e208f 100644 --- a/src/basic/time-util.c +++ b/src/basic/time-util.c @@ -38,6 +38,7 @@ #include "macro.h" #include "parse-util.h" #include "path-util.h" +#include "process-util.h" #include "string-util.h" #include "strv.h" #include "time-util.h" |