blob: 988631332a168de44c8937dc31a4c319c9ef5f5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-ak,v 1.1 2022/03/07 20:34:16 wiz Exp $
--- libguile/null-threads.c.orig 2008-01-04 14:43:50.000000000 +0100
+++ libguile/null-threads.c
@@ -47,8 +47,10 @@ int
scm_i_pthread_key_create (scm_i_pthread_key_t *key,
void (*destr_func) (void *))
{
+#if 0 /* keys are needed by other atexit() functions */
if (all_keys == NULL)
atexit (destroy_keys);
+#endif
key->next = all_keys;
all_keys = key;
|