Remove powerpc, sparc fdim inlines (bug 22987).
[glibc.git] / malloc / tst-malloc_info.c
blob049d2a9b92a67dbe480767a130c48c866c1b9460
1 /* Smoke test for malloc_info.
2 Copyright (C) 2017-2018 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 <http://www.gnu.org/licenses/>. */
19 /* The purpose of this test is to provide a quick way to run
20 malloc_info in a multi-threaded process. */
22 #include <array_length.h>
23 #include <malloc.h>
24 #include <stdlib.h>
25 #include <support/support.h>
26 #include <support/xthread.h>
28 /* This barrier is used to have the main thread wait until the helper
29 threads have performed their allocations. */
30 static pthread_barrier_t barrier;
32 enum
34 /* Number of threads performing allocations. */
35 thread_count = 4,
37 /* Amount of memory allocation per thread. This should be large
38 enough to cause the allocation of multiple heaps per arena. */
39 per_thread_allocations
40 = sizeof (void *) == 4 ? 16 * 1024 * 1024 : 128 * 1024 * 1024,
43 static void *
44 allocation_thread_function (void *closure)
46 struct list
48 struct list *next;
49 long dummy[4];
52 struct list *head = NULL;
53 size_t allocated = 0;
54 while (allocated < per_thread_allocations)
56 struct list *new_head = xmalloc (sizeof (*new_head));
57 allocated += sizeof (*new_head);
58 new_head->next = head;
59 head = new_head;
62 xpthread_barrier_wait (&barrier);
64 /* Main thread prints first statistics here. */
66 xpthread_barrier_wait (&barrier);
68 while (head != NULL)
70 struct list *next_head = head->next;
71 free (head);
72 head = next_head;
75 return NULL;
78 static int
79 do_test (void)
81 xpthread_barrier_init (&barrier, NULL, thread_count + 1);
83 pthread_t threads[thread_count];
84 for (size_t i = 0; i < array_length (threads); ++i)
85 threads[i] = xpthread_create (NULL, allocation_thread_function, NULL);
87 xpthread_barrier_wait (&barrier);
88 puts ("info: After allocation:");
89 malloc_info (0, stdout);
91 xpthread_barrier_wait (&barrier);
92 for (size_t i = 0; i < array_length (threads); ++i)
93 xpthread_join (threads[i]);
95 puts ("\ninfo: After deallocation:");
96 malloc_info (0, stdout);
98 return 0;
101 #include <support/test-driver.c>