chiark / gitweb /
service: when after startup only one process is in a service's cgroup, assume it...
[elogind.git] / src / util.h
index 6a252abbb153f727d7197d178217304030a3f7ad..71889f1425762b256a0874870995896d51dca50a 100644 (file)
@@ -366,6 +366,9 @@ DIR *xopendirat(int dirfd, const char *name);
 
 int ask_password_tty(const char *message, usec_t until, const char *flag_file, char **_passphrase);
 
+void dual_timestamp_serialize(FILE *f, const char *name, dual_timestamp *t);
+void dual_timestamp_deserialize(FILE *f, const char *line, dual_timestamp *t);
+
 #define NULSTR_FOREACH(i, l) \
         for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)