aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2020-01-08 11:12:25 -0800
committerGlenn Morris2020-01-08 11:12:25 -0800
commiteae42a625511555570ce2e809f4b93072ae9c37a (patch)
treef1a3cdbda21865aa872ae02053f49a0e5948fb91 /src
parentb968b733a2a0450eb7312a5e72c059ec3c59ddd9 (diff)
parent50dc61509512a3caaa0a7a110af8578f8e360f37 (diff)
downloademacs-eae42a625511555570ce2e809f4b93072ae9c37a.tar.gz
emacs-eae42a625511555570ce2e809f4b93072ae9c37a.zip
Merge from origin/emacs-27
50dc615095 (origin/emacs-27) Fix build without threads
Diffstat (limited to 'src')
-rw-r--r--src/systhread.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/systhread.c b/src/systhread.c
index 2c3a060a17e..5bd629946f9 100644
--- a/src/systhread.c
+++ b/src/systhread.c
@@ -83,8 +83,7 @@ sys_thread_equal (sys_thread_t t, sys_thread_t u)
83} 83}
84 84
85bool 85bool
86sys_thread_create (sys_thread_t *t, const char *name, 86sys_thread_create (sys_thread_t *t, thread_creation_function *func, void *datum)
87 thread_creation_function *func, void *datum)
88{ 87{
89 return false; 88 return false;
90} 89}