summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_hash_table.h
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-10-16 08:27:56 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-10-16 08:43:02 -0700
commit3924d8611513eea74446d655b554596ab66381ff (patch)
tree710b6bb1ddfc7ccfd9af64e3e8b1cd04f1d07a21 /src/gallium/auxiliary/util/u_hash_table.h
parent166957abebea6aa203eba7e6348e89d53cf0e13e (diff)
util: Change function names to begin with u_.
Avoids link-time clashes with Mesa's internal hash table.
Diffstat (limited to 'src/gallium/auxiliary/util/u_hash_table.h')
-rw-r--r--src/gallium/auxiliary/util/u_hash_table.h33
1 files changed, 17 insertions, 16 deletions
diff --git a/src/gallium/auxiliary/util/u_hash_table.h b/src/gallium/auxiliary/util/u_hash_table.h
index feee881582..feb47365f0 100644
--- a/src/gallium/auxiliary/util/u_hash_table.h
+++ b/src/gallium/auxiliary/util/u_hash_table.h
@@ -46,7 +46,7 @@ extern "C" {
/**
* Generic purpose hash table.
*/
-struct hash_table;
+struct u_hash_table;
/**
@@ -55,37 +55,38 @@ struct hash_table;
* @param hash hash function
* @param compare should return 0 for two equal keys.
*/
-struct hash_table *
-hash_table_create(unsigned (*hash)(void *key),
- int (*compare)(void *key1, void *key2));
+struct u_hash_table *
+u_hash_table_create(unsigned (*hash)(void *key),
+ int (*compare)(void *key1, void *key2));
enum pipe_error
-hash_table_set(struct hash_table *ht,
- void *key,
- void *value);
+u_hash_table_set(struct u_hash_table *ht,
+ void *key,
+ void *value);
void *
-hash_table_get(struct hash_table *ht,
- void *key);
+u_hash_table_get(struct u_hash_table *ht,
+ void *key);
void
-hash_table_remove(struct hash_table *ht,
- void *key);
+u_hash_table_remove(struct u_hash_table *ht,
+ void *key);
void
-hash_table_clear(struct hash_table *ht);
+u_hash_table_clear(struct u_hash_table *ht);
enum pipe_error
-hash_table_foreach(struct hash_table *ht,
- enum pipe_error (*callback)(void *key, void *value, void *data),
- void *data);
+u_hash_table_foreach(struct u_hash_table *ht,
+ enum pipe_error (*callback)
+ (void *key, void *value, void *data),
+ void *data);
void
-hash_table_destroy(struct hash_table *ht);
+u_hash_table_destroy(struct u_hash_table *ht);
#ifdef __cplusplus