1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-31 14:50:15 +03:00

shared - reinstate plymouth_running()

This will be used by fsckd. This reverts part of
031886edfc6e96ab778c241035a8d00fb0de99d3.
This commit is contained in:
Tom Gundersen 2015-03-16 18:29:26 +01:00
parent 031886edfc
commit a88c8750b3
2 changed files with 6 additions and 0 deletions

View File

@ -4228,6 +4228,10 @@ bool nulstr_contains(const char*nulstr, const char *needle) {
return false;
}
bool plymouth_running(void) {
return access("/run/plymouth/pid", F_OK) >= 0;
}
char* strshorten(char *s, size_t l) {
assert(s);

View File

@ -549,6 +549,8 @@ int kill_and_sigcont(pid_t pid, int sig);
bool nulstr_contains(const char*nulstr, const char *needle);
bool plymouth_running(void);
bool hostname_is_valid(const char *s) _pure_;
char* hostname_cleanup(char *s, bool lowercase);