aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2020-01-08 12:25:58 -0800
committerGlenn Morris2020-01-08 12:25:58 -0800
commit91e239a954283a372e48c81250936efe7d9591e5 (patch)
treed4680daeb587f41cec071e3f630904392470f274
parenteae42a625511555570ce2e809f4b93072ae9c37a (diff)
parent1fe596d89f9398f887bde7174bede39270065f9e (diff)
downloademacs-91e239a954283a372e48c81250936efe7d9591e5.tar.gz
emacs-91e239a954283a372e48c81250936efe7d9591e5.zip
Merge from origin/emacs-27
1fe596d89f (origin/emacs-27) Fix another compilation problem in a bui...
-rw-r--r--src/systhread.c4
1 files changed, 4 insertions, 0 deletions
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)
81{ 81{
82 return t == u; 82 return t == u;
83} 83}
84void
85sys_thread_set_name (const char *name)
86{
87}
84 88
85bool 89bool
86sys_thread_create (sys_thread_t *t, thread_creation_function *func, void *datum) 90sys_thread_create (sys_thread_t *t, thread_creation_function *func, void *datum)