sl@0: /* Portions copyright (c) 2009 Nokia Corporation. All rights reserved. */ sl@0: #undef G_DISABLE_ASSERT sl@0: #undef G_LOG_DOMAIN sl@0: #define G_ERRORCHECK_MUTEXES sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #ifdef __SYMBIAN32__ sl@0: #include sl@0: #include "mrt2_glib2_test.h" sl@0: #endif /*__SYMBIAN32__*/ sl@0: static gpointer sl@0: locking_thread (gpointer mutex) sl@0: { sl@0: g_mutex_lock ((GMutex*)mutex); sl@0: sl@0: return NULL; sl@0: } sl@0: sl@0: static void sl@0: lock_locked_mutex (void) sl@0: { sl@0: GMutex* mutex = g_mutex_new (); sl@0: g_mutex_lock (mutex); sl@0: g_mutex_lock (mutex); sl@0: } sl@0: sl@0: static void sl@0: trylock_locked_mutex (void) sl@0: { sl@0: GMutex* mutex = g_mutex_new (); sl@0: g_mutex_lock (mutex); sl@0: g_mutex_trylock (mutex); sl@0: } sl@0: sl@0: static void sl@0: unlock_unlocked_mutex (void) sl@0: { sl@0: GMutex* mutex = g_mutex_new (); sl@0: g_mutex_lock (mutex); sl@0: g_mutex_unlock (mutex); sl@0: g_mutex_unlock (mutex); sl@0: } sl@0: sl@0: static void sl@0: free_locked_mutex (void) sl@0: { sl@0: GMutex* mutex = g_mutex_new (); sl@0: g_mutex_lock (mutex); sl@0: g_mutex_free (mutex); sl@0: } sl@0: sl@0: static void sl@0: wait_on_unlocked_mutex (void) sl@0: { sl@0: GMutex* mutex = g_mutex_new (); sl@0: GCond* cond = g_cond_new (); sl@0: g_cond_wait (cond, mutex); sl@0: } sl@0: sl@0: static void sl@0: wait_on_otherwise_locked_mutex (void) sl@0: { sl@0: GMutex* mutex = g_mutex_new (); sl@0: GCond* cond = g_cond_new (); sl@0: GThread* thread = g_thread_create (locking_thread, mutex, TRUE, NULL); sl@0: g_assert (thread != NULL); sl@0: g_usleep (G_USEC_PER_SEC); sl@0: g_cond_wait (cond, mutex); sl@0: } sl@0: sl@0: static void sl@0: timed_wait_on_unlocked_mutex (void) sl@0: { sl@0: GMutex* mutex = g_mutex_new (); sl@0: GCond* cond = g_cond_new (); sl@0: g_cond_timed_wait (cond, mutex, NULL); sl@0: } sl@0: sl@0: static void sl@0: timed_wait_on_otherwise_locked_mutex (void) sl@0: { sl@0: GMutex* mutex = g_mutex_new (); sl@0: GCond* cond = g_cond_new (); sl@0: GThread* thread = g_thread_create (locking_thread, mutex, TRUE, NULL); sl@0: g_assert (thread != NULL); sl@0: g_usleep (G_USEC_PER_SEC); sl@0: g_cond_timed_wait (cond, mutex, NULL); sl@0: } sl@0: sl@0: struct sl@0: { sl@0: char *name; sl@0: void (*func)(); sl@0: } func_table[] = sl@0: { sl@0: {"lock_locked_mutex", lock_locked_mutex}, sl@0: {"trylock_locked_mutex", trylock_locked_mutex}, sl@0: {"unlock_unlocked_mutex", unlock_unlocked_mutex}, sl@0: {"free_locked_mutex", free_locked_mutex}, sl@0: {"wait_on_unlocked_mutex", wait_on_unlocked_mutex}, sl@0: {"wait_on_otherwise_locked_mutex", wait_on_otherwise_locked_mutex}, sl@0: {"timed_wait_on_unlocked_mutex", timed_wait_on_unlocked_mutex}, sl@0: {"timed_wait_on_otherwise_locked_mutex", sl@0: timed_wait_on_otherwise_locked_mutex} sl@0: }; sl@0: sl@0: int sl@0: main (int argc, char* argv[]) sl@0: { sl@0: int i; sl@0: #ifdef __SYMBIAN32__ sl@0: 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: g_set_print_handler(mrtPrintHandler); sl@0: #endif /*__SYMBIAN32__*/ sl@0: if (argc == 2) sl@0: { sl@0: for (i = 0; i < G_N_ELEMENTS (func_table); i++) sl@0: { sl@0: if (strcmp (func_table[i].name, argv[1]) == 0) sl@0: { sl@0: g_thread_init (NULL); sl@0: func_table[i].func (); sl@0: g_assert_not_reached (); sl@0: } sl@0: } sl@0: } sl@0: sl@0: fprintf (stderr, "Usage: errorcheck-mutex-test [TEST]\n\n"); sl@0: fprintf (stderr, " where TEST can be one of:\n\n"); sl@0: for (i = 0; i < G_N_ELEMENTS (func_table); i++) sl@0: { sl@0: fprintf (stderr, " %s\n", func_table[i].name); sl@0: } sl@0: #ifdef __SYMBIAN32__ sl@0: testResultXml("errorcheck-mutex-test"); sl@0: #endif /* EMULATOR */ sl@0: return 0; sl@0: }