mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +00: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:
parent
50dc615095
commit
1fe596d89f
1 changed files with 4 additions and 0 deletions
|
|
@ -81,6 +81,10 @@ sys_thread_equal (sys_thread_t t, sys_thread_t u)
|
||||||
{
|
{
|
||||||
return t == u;
|
return t == u;
|
||||||
}
|
}
|
||||||
|
void
|
||||||
|
sys_thread_set_name (const char *name)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
sys_thread_create (sys_thread_t *t, thread_creation_function *func, void *datum)
|
sys_thread_create (sys_thread_t *t, thread_creation_function *func, void *datum)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue