1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-11 22:11:21 -08:00

Fix another compilation problem in a build without threads

* src/systhread.c (sys_thread_set_name) [!THREADS_ENABLED]: Add
a trivial implementation.
This commit is contained in:
Eli Zaretskii 2020-01-08 22:00:36 +02:00
parent 50dc615095
commit 1fe596d89f

View file

@ -81,6 +81,10 @@ sys_thread_equal (sys_thread_t t, sys_thread_t u)
{
return t == u;
}
void
sys_thread_set_name (const char *name)
{
}
bool
sys_thread_create (sys_thread_t *t, thread_creation_function *func, void *datum)