summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-08-01 05:05:12 +0200
committerLennart Poettering <lennart@poettering.net>2011-08-01 05:05:12 +0200
commitb636465bc0190448f960791cd059c4dd1fa37717 (patch)
tree03484804e0ce940f20e90592db839726c1b66767 /src/util.h
parentcd0ed1db9b58900959866e7b265fae2b153b68c0 (diff)
util: add is_main_thread() call
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index eb0061cdb5..407160d528 100644
--- a/src/util.h
+++ b/src/util.h
@@ -460,6 +460,8 @@ int get_files_in_directory(const char *path, char ***list);
char *join(const char *x, ...) _sentinel_;
+bool is_main_thread(void);
+
#define NULSTR_FOREACH(i, l) \
for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)