1 /* Multi-threaded test for resolver initialization.
2 Copyright (C) 2017-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
22 #include <support/check.h>
23 #include <support/support.h>
24 #include <support/xthread.h>
26 /* Whether name lookups succeed does not really matter. We use this
27 to trigger initialization of the resolver. */
28 static const char *test_hostname
= "www.gnu.org";
30 /* The different initialization methods. */
31 enum test_type
{ init
, byname
, gai
};
32 enum { type_count
= 3 };
34 /* Thread function. Perform a few resolver options. */
36 thread_func (void *closure
)
38 enum test_type
*ptype
= closure
;
39 /* Perform a few calls to the requested operation. */
40 TEST_VERIFY (*ptype
>= 0);
41 TEST_VERIFY (*ptype
< (int) type_count
);
42 for (int i
= 0; i
< 3; ++i
)
49 gethostbyname (test_hostname
);
53 struct addrinfo hints
= { 0, };
54 struct addrinfo
*ai
= NULL
;
55 if (getaddrinfo (test_hostname
, "80", &hints
, &ai
) == 0)
67 /* Start a small number of threads which perform resolver
69 enum { thread_count
= 30 };
71 pthread_t threads
[thread_count
];
72 for (int i
= 0; i
< thread_count
; ++i
)
74 enum test_type
*ptype
= xmalloc (sizeof (*ptype
));
75 *ptype
= i
% type_count
;
76 threads
[i
] = xpthread_create (NULL
, thread_func
, ptype
);
78 for (int i
= 0; i
< type_count
; ++i
)
80 enum test_type
*ptype
= xmalloc (sizeof (*ptype
));
84 for (int i
= 0; i
< thread_count
; ++i
)
85 xpthread_join (threads
[i
]);
89 #include <support/test-driver.c>