myMPD
Internal API documentation
Loading...
Searching...
No Matches
thread.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-3.0-or-later
3 myMPD (c) 2018-2025 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
11#ifndef MYMPD_THREAD_H
12#define MYMPD_THREAD_H
13
14extern _Atomic int mympd_worker_threads;
15#ifdef MYMPD_ENABLE_LUA
16 extern _Atomic int script_worker_threads;
17#endif
18
19void set_threadname(const char *threadname);
20
21#endif
void set_threadname(const char *threadname)
Definition thread.c:41
_Atomic int mympd_worker_threads
Count of running worker threads.
Definition thread.c:14