From e15fd85727636627e0cc7d4fd2d5367e178e42cc Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Thu, 12 Dec 2002 13:03:15 +0000 Subject: Add mechanism to destroy mutexes. Important on OS's where mutex initialization allocates memory (like FreeBSD). --- src/mesa/main/context.c | 4 +++- src/mesa/main/hash.c | 3 ++- src/mesa/main/texobj.c | 5 ++++- 3 files changed, 9 insertions(+), 3 deletions(-) (limited to 'src/mesa/main') diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 4656f25a70..2784fa82bd 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.189 2002/11/19 15:25:00 brianp Exp $ */ +/* $Id: context.c,v 1.190 2002/12/12 13:03:15 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -746,6 +746,8 @@ free_shared_state( GLcontext *ctx, struct gl_shared_state *ss ) _mesa_DeleteHashTable(ss->VertexPrograms); #endif + _glthread_DESTROY_MUTEX(ss->Mutex); + FREE(ss); } diff --git a/src/mesa/main/hash.c b/src/mesa/main/hash.c index 71df0cbf5b..b22ee2551a 100644 --- a/src/mesa/main/hash.c +++ b/src/mesa/main/hash.c @@ -1,4 +1,4 @@ -/* $Id: hash.c,v 1.14 2002/10/24 23:57:21 brianp Exp $ */ +/* $Id: hash.c,v 1.15 2002/12/12 13:03:15 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -94,6 +94,7 @@ void _mesa_DeleteHashTable(struct _mesa_HashTable *table) entry = next; } } + _glthread_DESTROY_MUTEX(table->Mutex); FREE(table); } diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index 93ae40ac74..f24a0b03de 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -1,4 +1,4 @@ -/* $Id: texobj.c,v 1.62 2002/10/24 23:57:21 brianp Exp $ */ +/* $Id: texobj.c,v 1.63 2002/12/12 13:03:15 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -164,6 +164,9 @@ void _mesa_free_texture_object( struct gl_shared_state *shared, } } + /* destroy the mutex -- it may have allocated memory (eg on bsd) */ + _glthread_DESTROY_MUTEX(t->Mutex); + /* free this object */ FREE( t ); } -- cgit v1.2.3