1 $NetBSD: patch-src_util_u__queue.c,v 1.3 2022/03/13 15:50:05 tnn Exp $
3 atexit() is not a good idea in shared libraries.
5 FreeBSD reported atexit bug for 10.6:
6 https://bugs.freedesktop.org/show_bug.cgi?id=91869
8 --- src/util/u_queue.c.orig 2021-07-14 20:04:59.260044300 +0000
10 @@ -58,11 +58,22 @@ static once_flag atexit_once_flag = ONCE
11 static struct list_head queue_list;
12 static mtx_t exit_mutex = _MTX_INITIALIZER_NP;
14 +#if defined(HAVE_NOATEXIT)
15 +static int global_init_called = 0;
17 +static void __attribute__((__destructor__))
23 struct util_queue *iter;
25 +#if defined(HAVE_NOATEXIT)
26 + if (!global_init_called)
30 mtx_lock(&exit_mutex);
31 /* Wait for all queues to assert idle. */
32 LIST_FOR_EACH_ENTRY(iter, &queue_list, head) {
33 @@ -75,7 +86,11 @@ static void
36 list_inithead(&queue_list);
37 +#if defined(HAVE_NOATEXIT)
38 + global_init_called = 1;
40 atexit(atexit_handler);