[uim-commit] r1525 - trunk/uim

yamaken at freedesktop.org yamaken at freedesktop.org
Mon Sep 19 09:12:50 PDT 2005


Author: yamaken
Date: 2005-09-19 09:12:47 -0700 (Mon, 19 Sep 2005)
New Revision: 1525

Modified:
   trunk/uim/context.h
Log:
* This commit complements lacking change of r1484

* uim/context.h
  - Complements lacking change for #ifndef HAVE_PTHREAD_H in r1484
  - (UIM_NEW_MUTEX, UIM_NEW_MUTEX_STATIC): Rename to UIM_DEFINE_MUTEX*
  - (UIM_DEFINE_MUTEX): Renamed from UIM_NEW_MUTEX
  - (UIM_DEFINE_MUTEX_STATIC): Renamed from UIM_NEW_MUTEX_STATIC


Modified: trunk/uim/context.h
===================================================================
--- trunk/uim/context.h	2005-09-19 05:29:40 UTC (rev 1524)
+++ trunk/uim/context.h	2005-09-19 16:12:47 UTC (rev 1525)
@@ -129,8 +129,8 @@
   #define UIM_LOCK_MUTEX(mtx)    pthread_mutex_lock(&mtx)
   #define UIM_UNLOCK_MUTEX(mtx)  pthread_mutex_unlock(&mtx)
 #else
-  #define UIM_NEW_MUTEX(mtx)
-  #define UIM_NEW_MUTEX_STATIC(mtx)
+  #define UIM_DEFINE_MUTEX(mtx)
+  #define UIM_DEFINE_MUTEX_STATIC(mtx)
   #define UIM_LOCK_MUTEX(mtx)
   #define UIM_UNLOCK_MUTEX(mtx)
 #endif /* HAVE_PTHREAD_H */



More information about the uim-commit mailing list