diff options
Diffstat (limited to 'camel/camel-private.h')
-rw-r--r-- | camel/camel-private.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/camel-private.h b/camel/camel-private.h index f63a452a4c..4fb5bdb461 100644 --- a/camel/camel-private.h +++ b/camel/camel-private.h @@ -41,8 +41,8 @@ extern "C" { struct _CamelFolderPrivate { #ifdef ENABLE_THREADS - GMutex *lock; - GMutex *change_lock; + EMutex *lock; + EMutex *change_lock; #endif /* must require the 'change_lock' to access this */ @@ -51,8 +51,8 @@ struct _CamelFolderPrivate { }; #ifdef ENABLE_THREADS -#define CAMEL_FOLDER_LOCK(f, l) (g_mutex_lock(((CamelFolder *)f)->priv->l)) -#define CAMEL_FOLDER_UNLOCK(f, l) (g_mutex_unlock(((CamelFolder *)f)->priv->l)) +#define CAMEL_FOLDER_LOCK(f, l) (e_mutex_lock(((CamelFolder *)f)->priv->l)) +#define CAMEL_FOLDER_UNLOCK(f, l) (e_mutex_unlock(((CamelFolder *)f)->priv->l)) #else #define CAMEL_FOLDER_LOCK(f, l) #define CAMEL_FOLDER_UNLOCK(f, l) |