projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50dc615
)
Fix another compilation problem in a build without threads
author
Eli Zaretskii
<eliz@gnu.org>
Wed, 8 Jan 2020 20:00:36 +0000
(22:00 +0200)
committer
Eli Zaretskii
<eliz@gnu.org>
Wed, 8 Jan 2020 20:00:36 +0000
(22:00 +0200)
* src/systhread.c (sys_thread_set_name) [!THREADS_ENABLED]: Add
a trivial implementation.
src/systhread.c
patch
|
blob
|
history
diff --git
a/src/systhread.c
b/src/systhread.c
index 5bd629946f99d7cde424d16b765102a298fd6690..c649ae853a353322a8244df2ce7a6cd198f373d1 100644
(file)
--- 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)