maint.mk: Update system header list for #include syntax checks.
[gnulib.git] / tests / test-once.c
blob332c86e5eb81314673d0340a621aed4946bb7099
1 /* Test of once-only execution in multithreaded situations.
2 Copyright (C) 2018-2024 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2018. */
19 #include <config.h>
21 #include "glthread/lock.h"
23 #include "macros.h"
25 gl_once_define(static, a_once)
27 static int a;
29 static void
30 a_init (void)
32 a = 42;
35 int
36 main ()
38 gl_once (a_once, a_init);
40 ASSERT (a == 42);
42 return test_exit_status;