diff options
author | Izik Eidus <ieidus@redhat.com> | 2010-04-09 05:06:32 +0300 |
---|---|---|
committer | Izik Eidus <ieidus@redhat.com> | 2010-04-09 05:09:02 +0300 |
commit | 7977a00187f98fa0a28aaeb87306d8fd118b9db7 (patch) | |
tree | 26e581e73bc04ede88d981774fbadfd8decdeea8 /gdi_canvas.h | |
parent | badb8b3bc0a09955c4022405f19562aea0c30d16 (diff) |
spice: win32 client: fix gdi locking
While the fix could have been more effective,
it seems like this patch stream better with the coding
logic that was there..., maybe later we will want to change
the locking into more effective way.
(There is just the primary surface to protect in reiality)
Signed-off-by: Izik Eidus <ieidus@redhat.com>
Diffstat (limited to 'gdi_canvas.h')
-rw-r--r-- | gdi_canvas.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdi_canvas.h b/gdi_canvas.h index 73d6978..e0a43d5 100644 --- a/gdi_canvas.h +++ b/gdi_canvas.h @@ -34,7 +34,7 @@ typedef struct { } GdiImage; SpiceCanvas *gdi_canvas_create(int width, int height, - HDC dc, class Mutex *lock, int bits, + HDC dc, class RecurciveMutex *lock, int bits, SpiceImageCache *bits_cache, SpicePaletteCache *palette_cache, SpiceImageSurfaces *surfaces, |