From: Eli Zaretskii Date: Wed, 8 Jan 2020 20:00:36 +0000 (+0200) Subject: Fix another compilation problem in a build without threads X-Git-Tag: emacs-27.0.90~193 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1fe596d89f9398f887bde7174bede39270065f9e;p=emacs.git Fix another compilation problem in a build without threads * src/systhread.c (sys_thread_set_name) [!THREADS_ENABLED]: Add a trivial implementation. --- diff --git a/src/systhread.c b/src/systhread.c index 5bd629946f9..c649ae853a3 100644 --- a/src/systhread.c +++ b/src/systhread.c @@ -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)