mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 11:56:16 +01:00
tests/slice-concurrent.c: avoid using rand() from multiple threads
This commit is contained in:
parent
58521101b3
commit
9f558a2c50
@ -49,18 +49,18 @@ thread_func (void *arg)
|
|||||||
int bytes, f, t;
|
int bytes, f, t;
|
||||||
char *mem;
|
char *mem;
|
||||||
|
|
||||||
if (rand() % (N_ALLOCS / 20) == 0)
|
if (g_random_int_range (0, N_ALLOCS / 20) == 0)
|
||||||
g_test_message ("%c", 'a' - 1 + td->thread_id);
|
g_test_message ("%c", 'a' - 1 + td->thread_id);
|
||||||
|
|
||||||
/* allocate block of random size and randomly fill */
|
/* allocate block of random size and randomly fill */
|
||||||
bytes = rand() % MAX_BLOCK_SIZE + 1;
|
bytes = g_random_int_range (0, MAX_BLOCK_SIZE + 1);
|
||||||
mem = g_slice_alloc (bytes);
|
mem = g_slice_alloc (bytes);
|
||||||
|
|
||||||
for (f = 0; f < bytes; f++)
|
for (f = 0; f < bytes; f++)
|
||||||
mem[f] = rand();
|
mem[f] = (char) g_random_int ();
|
||||||
|
|
||||||
/* associate block with random thread */
|
/* associate block with random thread */
|
||||||
t = rand() % N_THREADS;
|
t = g_random_int_range (0, N_THREADS);
|
||||||
g_mutex_lock (&tdata[t].to_free_mutex);
|
g_mutex_lock (&tdata[t].to_free_mutex);
|
||||||
tdata[t].to_free[tdata[t].n_to_free] = mem;
|
tdata[t].to_free[tdata[t].n_to_free] = mem;
|
||||||
tdata[t].bytes_to_free[tdata[t].n_to_free] = bytes;
|
tdata[t].bytes_to_free[tdata[t].n_to_free] = bytes;
|
||||||
@ -68,9 +68,9 @@ thread_func (void *arg)
|
|||||||
g_mutex_unlock (&tdata[t].to_free_mutex);
|
g_mutex_unlock (&tdata[t].to_free_mutex);
|
||||||
|
|
||||||
/* shuffle thread execution order every once in a while */
|
/* shuffle thread execution order every once in a while */
|
||||||
if (rand() % 97 == 0)
|
if (g_random_int_range (0, 97) == 0)
|
||||||
{
|
{
|
||||||
if (rand() % 2)
|
if (g_random_boolean ())
|
||||||
g_thread_yield(); /* concurrent shuffling for single core */
|
g_thread_yield(); /* concurrent shuffling for single core */
|
||||||
else
|
else
|
||||||
g_usleep (1000); /* concurrent shuffling for multi core */
|
g_usleep (1000); /* concurrent shuffling for multi core */
|
||||||
|
Loading…
Reference in New Issue
Block a user