[cairo-mutex] Remove NOOP definition of CAIRO_MUTEX_INITIALIZE

as now the mutex layer will use a NOOP CAIRO_MUTEX_INITIALIZE
by default if the implementation does not define CAIRO_MUTEX_INIT.
This commit is contained in:
Behdad Esfahbod 2007-05-01 19:46:51 -04:00
parent 06cc74d974
commit c4e0a059fe

View file

@ -73,7 +73,6 @@ CAIRO_BEGIN_DECLS
typedef pthread_mutex_t cairo_mutex_t;
# define CAIRO_MUTEX_INITIALIZE() CAIRO_MUTEX_NOOP
# define CAIRO_MUTEX_LOCK(mutex) pthread_mutex_lock (&(mutex))
# define CAIRO_MUTEX_UNLOCK(mutex) pthread_mutex_unlock (&(mutex))
# define CAIRO_MUTEX_FINI(mutex) pthread_mutex_destroy (&(mutex))