sl@0
|
1 |
/* test for gslice cross thread allocation/free
|
sl@0
|
2 |
* Copyright (C) 2006 Stefan Westerfeld
|
sl@0
|
3 |
* Copyright (C) 2007 Tim Janik
|
sl@0
|
4 |
* Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
|
sl@0
|
5 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
6 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
7 |
* License as published by the Free Software Foundation; either
|
sl@0
|
8 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
9 |
*
|
sl@0
|
10 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
13 |
* Lesser General Public License for more details.
|
sl@0
|
14 |
*
|
sl@0
|
15 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
16 |
* License along with this library; if not, write to the
|
sl@0
|
17 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
18 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
#include <glib.h>
|
sl@0
|
21 |
#include <stdlib.h>
|
sl@0
|
22 |
#include <unistd.h>
|
sl@0
|
23 |
#ifdef __SYMBIAN32__
|
sl@0
|
24 |
#include <glib_global.h>
|
sl@0
|
25 |
#include "mrt2_glib2_test.h"
|
sl@0
|
26 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
27 |
#define N_THREADS 2
|
sl@0
|
28 |
#define N_ALLOCS 500
|
sl@0
|
29 |
#define MAX_BLOCK_SIZE 64
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
struct ThreadData
|
sl@0
|
33 |
{
|
sl@0
|
34 |
int thread_id;
|
sl@0
|
35 |
GThread* gthread;
|
sl@0
|
36 |
|
sl@0
|
37 |
GMutex* to_free_mutex;
|
sl@0
|
38 |
void* to_free [N_THREADS * N_ALLOCS];
|
sl@0
|
39 |
int bytes_to_free [N_THREADS * N_ALLOCS];
|
sl@0
|
40 |
int n_to_free;
|
sl@0
|
41 |
int n_freed;
|
sl@0
|
42 |
} tdata[N_THREADS];
|
sl@0
|
43 |
|
sl@0
|
44 |
void*
|
sl@0
|
45 |
thread_func (void *arg)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
struct ThreadData *td = arg;
|
sl@0
|
48 |
int i, bytes, f, t;
|
sl@0
|
49 |
char *mem;
|
sl@0
|
50 |
// g_print ("Thread %d starting\n", td->thread_id);
|
sl@0
|
51 |
for (i = 0; i < N_ALLOCS; i++)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
if (rand() % (N_ALLOCS / 20) == 0)
|
sl@0
|
54 |
g_print ("%c", 'a' - 1 + td->thread_id);
|
sl@0
|
55 |
|
sl@0
|
56 |
/* allocate block of random size and randomly fill */
|
sl@0
|
57 |
bytes = rand() % MAX_BLOCK_SIZE + 1;
|
sl@0
|
58 |
/* char **/mem = g_slice_alloc (bytes);
|
sl@0
|
59 |
// int f;
|
sl@0
|
60 |
for (f = 0; f < bytes; f++)
|
sl@0
|
61 |
mem[f] = rand();
|
sl@0
|
62 |
|
sl@0
|
63 |
/* associate block with random thread */
|
sl@0
|
64 |
/*int*/ t = rand() % N_THREADS;
|
sl@0
|
65 |
g_mutex_lock (tdata[t].to_free_mutex);
|
sl@0
|
66 |
tdata[t].to_free[tdata[t].n_to_free] = mem;
|
sl@0
|
67 |
tdata[t].bytes_to_free[tdata[t].n_to_free] = bytes;
|
sl@0
|
68 |
tdata[t].n_to_free++;
|
sl@0
|
69 |
g_mutex_unlock (tdata[t].to_free_mutex);
|
sl@0
|
70 |
|
sl@0
|
71 |
/* shuffle thread execution order every once in a while */
|
sl@0
|
72 |
if (rand() % 97 == 0)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
if (rand() % 2)
|
sl@0
|
75 |
g_thread_yield(); /* concurrent shuffling for single core */
|
sl@0
|
76 |
else
|
sl@0
|
77 |
g_usleep (1000); /* concurrent shuffling for multi core */
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
/* free a block associated with this thread */
|
sl@0
|
81 |
g_mutex_lock (td->to_free_mutex);
|
sl@0
|
82 |
if (td->n_to_free > 0)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
td->n_to_free--;
|
sl@0
|
85 |
g_slice_free1 (td->bytes_to_free[td->n_to_free], td->to_free[td->n_to_free]);
|
sl@0
|
86 |
td->n_freed++;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
g_mutex_unlock (td->to_free_mutex);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
return NULL;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
int
|
sl@0
|
95 |
main()
|
sl@0
|
96 |
{
|
sl@0
|
97 |
int t;
|
sl@0
|
98 |
#ifdef __SYMBIAN32__
|
sl@0
|
99 |
g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
|
sl@0
|
100 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
101 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
102 |
g_thread_init (NULL);
|
sl@0
|
103 |
|
sl@0
|
104 |
for (t = 0; t < N_THREADS; t++)
|
sl@0
|
105 |
{
|
sl@0
|
106 |
tdata[t].thread_id = t + 1;
|
sl@0
|
107 |
tdata[t].n_to_free = 0;
|
sl@0
|
108 |
tdata[t].n_freed = 0;
|
sl@0
|
109 |
tdata[t].to_free_mutex = g_mutex_new();
|
sl@0
|
110 |
}
|
sl@0
|
111 |
g_print ("Starting %d threads for concurrent GSlice usage...\n", N_THREADS);
|
sl@0
|
112 |
for (t = 0; t < N_THREADS; t++)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
tdata[t].gthread = g_thread_create (thread_func, &tdata[t], TRUE, NULL);
|
sl@0
|
115 |
g_assert (tdata[t].gthread != NULL);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
for (t = 0; t < N_THREADS; t++)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
g_thread_join (tdata[t].gthread);
|
sl@0
|
120 |
}
|
sl@0
|
121 |
g_print ("\n");
|
sl@0
|
122 |
for (t = 0; t < N_THREADS; t++)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
g_print ("Thread %d: %d blocks freed, %d blocks not freed\n",
|
sl@0
|
125 |
tdata[t].thread_id, tdata[t].n_freed, tdata[t].n_to_free);
|
sl@0
|
126 |
}
|
sl@0
|
127 |
#if __SYMBIAN32__
|
sl@0
|
128 |
testResultXml("slice-concurrent");
|
sl@0
|
129 |
#endif /* EMULATOR */
|
sl@0
|
130 |
return 0;
|
sl@0
|
131 |
}
|