mesa: move/update hash function comments
authorBrian Paul <brianp@vmware.com>
Sat, 27 Mar 2010 14:59:17 +0000 (08:59 -0600)
committerBrian Paul <brianp@vmware.com>
Sat, 27 Mar 2010 14:59:17 +0000 (08:59 -0600)
(cherry picked from commit 535742d75f0096b22d1b8ff203ae561167af18f7)

src/mesa/main/hash.c

index f4af3fdcf70d0eafd0ab35c7bd4ac7e93877503a..b624e6ecac1537ed8851d83b8081eeab04f5bf2d 100644 (file)
@@ -120,12 +120,8 @@ _mesa_DeleteHashTable(struct _mesa_HashTable *table)
 
 
 /**
- * Lookup an entry in the hash table.
- * 
- * \param table the hash table.
- * \param key the key.
- * 
- * \return pointer to user's data or NULL if key not in table
+ * Lookup an entry in the hash table, without locking.
+ * \sa _mesa_HashLookup
  */
 static INLINE void *
 _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key)
@@ -147,6 +143,15 @@ _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key)
    return NULL;
 }
 
+
+/**
+ * Lookup an entry in the hash table.
+ * 
+ * \param table the hash table.
+ * \param key the key.
+ * 
+ * \return pointer to user's data or NULL if key not in table
+ */
 void *
 _mesa_HashLookup(struct _mesa_HashTable *table, GLuint key)
 {