summaryrefslogtreecommitdiff
path: root/src/cairo-win32-surface.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-09-19 14:24:00 +0000
committerCarl Worth <cworth@cworth.org>2005-09-19 14:24:00 +0000
commitfa5d17f4667719803fe27207ca1ec1e7a5882080 (patch)
treedc384ab3ee4689b1090648f17ffdcd38e29ad855 /src/cairo-win32-surface.c
parentd7bdc9477552382163ee0a0521a13c212015a4e8 (diff)
Originally: 2005-09-19 Hans Breuer <hans@breuer.org>
src/cairoint.h : win32 specific definitions for CAIRO_MUTEX_DECLARE, CAIRO_MUTEX_LOCK etc. [not based on win32 mutex but critical sections] src/cairo-win32-surface.c : add DllMain() to do global, single-threaded 'mutex' (de)initialization. No ifdefs needed, some variables would simply not be used when the respective backend would not be compiled in.
Diffstat (limited to 'src/cairo-win32-surface.c')
-rw-r--r--src/cairo-win32-surface.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/cairo-win32-surface.c b/src/cairo-win32-surface.c
index d63cb526..82dd4ffa 100644
--- a/src/cairo-win32-surface.c
+++ b/src/cairo-win32-surface.c
@@ -1051,3 +1051,37 @@ static const cairo_surface_backend_t cairo_win32_surface_backend = {
_cairo_win32_surface_flush,
NULL /* mark_dirty_rectangle */
};
+
+/*
+ * Without pthread, on win32 we need to initialize all the 'mutex'es
+ * before use. It is guaranteed that DllMain will get called single
+ * threaded before any other function.
+ * Initializing more than finally needed should not matter much.
+ */
+#ifndef HAVE_PTHREAD_H
+CRITICAL_SECTION cairo_toy_font_face_hash_table_mutex;
+CRITICAL_SECTION cairo_scaled_font_map_mutex;
+CRITICAL_SECTION cairo_ft_unscaled_font_map_mutex;
+
+BOOL WINAPI
+DllMain (HINSTANCE hinstDLL,
+ DWORD fdwReason,
+ LPVOID lpvReserved)
+{
+ switch (fdwReason)
+ {
+ case DLL_PROCESS_ATTACH:
+ /* every 'mutex' from CAIRO_MUTEX_DECALRE needs to be initialized here */
+ InitializeCriticalSection (&cairo_toy_font_face_hash_table_mutex);
+ InitializeCriticalSection (&cairo_scaled_font_map_mutex);
+ InitializeCriticalSection (&cairo_ft_unscaled_font_map_mutex);
+ break;
+ case DLL_PROCESS_DETACH:
+ DeleteCriticalSection (&cairo_toy_font_face_hash_table_mutex);
+ DeleteCriticalSection (&cairo_scaled_font_map_mutex);
+ DeleteCriticalSection (&cairo_ft_unscaled_font_map_mutex);
+ break;
+ }
+ return TRUE;
+}
+#endif