I guess this mutex is no longer needed

Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
Sebastian Ramacher 2013-12-03 17:04:58 +01:00
parent 43c3ba86f4
commit 0ac744c076

View file

@ -24,7 +24,12 @@ typedef struct zathura_page_widget_private_s {
zathura_t* zathura; /**< Zathura object */
cairo_surface_t* surface; /**< Cairo surface */
ZathuraRenderRequest* render_request; /* Request object */
mutex lock; /**< Lock */
/** Lock
*
* This mutex can probably be removed. All functions are now called from the
* main thread.
*/
mutex lock;
bool cached; /**< Cached state */
struct {