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:
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;
|
||||
}
|
||||
void
|
||||
sys_thread_set_name (const char *name)
|
||||
{
|
||||
}
|
||||
|
||||
bool
|
||||
sys_thread_create (sys_thread_t *t, thread_creation_function *func, void *datum)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue