X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fshared%2Futil.h;h=35ff2e3547f42e22f42ab10a677c79c090dadeb2;hp=e727ee738908f84b8b070fe005e8a0c8fee86a4e;hb=ba1261bc02693ac8a7712ade14aab8e22989ba88;hpb=344de60901f0e3ce0d2f112b7be97fc6d0e2f071 diff --git a/src/shared/util.h b/src/shared/util.h index e727ee738..35ff2e354 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -103,7 +103,7 @@ bool streq_ptr(const char *a, const char *b); #define newa(t, n) ((t*) alloca(sizeof(t)*(n))) -#define newdup(t, p, n) ((t*) memdup(p, sizeof(t)*(n)) +#define newdup(t, p, n) ((t*) memdup(p, sizeof(t)*(n))) #define malloc0(n) (calloc((n), 1)) @@ -349,6 +349,7 @@ int get_ctty(pid_t, dev_t *_devnr, char **r); int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid); int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid); +int rm_rf_children(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev); int rm_rf(const char *path, bool only_dirs, bool delete_root, bool honour_sticky); int pipe_eof(int fd); @@ -511,4 +512,8 @@ int can_sleep(const char *type); bool is_valid_documentation_url(const char *url); +bool in_initrd(void); + +void warn_melody(void); + #endif