From d4510856a007712900795c79853d2218780c2321 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 27 Oct 2015 00:02:45 +0100 Subject: util-lib: move is_main_thread() to process-util.[ch] --- src/basic/util.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/basic/util.c') diff --git a/src/basic/util.c b/src/basic/util.c index b079e8af16..6fe4f47018 100644 --- a/src/basic/util.c +++ b/src/basic/util.c @@ -421,15 +421,6 @@ int glob_extend(char ***strv, const char *path) { return k; } -bool is_main_thread(void) { - static thread_local int cached = 0; - - if (_unlikely_(cached == 0)) - cached = getpid() == gettid() ? 1 : -1; - - return cached > 0; -} - int block_get_whole_disk(dev_t d, dev_t *ret) { char *p, *s; int r; -- cgit v1.2.3-54-g00ecf