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