From 9b8094a663f08b50f01e3bcce8d22e4415b253e4 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 21 Mar 2000 22:20:42 +0000 Subject: removed a few const keywords because of mutex calls --- src/mesa/main/hash.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/main/hash.c') diff --git a/src/mesa/main/hash.c b/src/mesa/main/hash.c index cbd7f55135..17bcd1c5f3 100644 --- a/src/mesa/main/hash.c +++ b/src/mesa/main/hash.c @@ -1,4 +1,4 @@ -/* $Id: hash.c,v 1.8 2000/03/21 17:42:27 brianp Exp $ */ +/* $Id: hash.c,v 1.9 2000/03/21 22:20:42 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -206,7 +206,7 @@ void _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key) * This is used in the course of deleting all display lists when * a context is destroyed. */ -GLuint _mesa_HashFirstEntry(const struct _mesa_HashTable *table) +GLuint _mesa_HashFirstEntry(struct _mesa_HashTable *table) { GLuint pos; assert(table); @@ -247,7 +247,7 @@ void _mesa_HashPrint(const struct _mesa_HashTable *table) * numKeys - number of keys needed * Return: starting key of free block or 0 if failure */ -GLuint _mesa_HashFindFreeKeyBlock(const struct _mesa_HashTable *table, GLuint numKeys) +GLuint _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys) { GLuint maxKey = ~((GLuint) 0); _glthread_LOCK_MUTEX(table->Mutex); -- cgit v1.2.3