summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-01-04 23:20:36 +0100
committercgzones <cgzones@googlemail.com>2021-01-06 16:59:28 +0100
commit8fe04b7494fe0b8062e9afe4cf784db7f33bd5cd (patch)
treedd1f0ee3caebe50da4a2db46b0f75819bb6110a4
parent43d5c61884e7cd5229d3be2ae038f5a148742247 (diff)
Hashtable: use more distinct typename for key type
-rw-r--r--Action.c2
-rw-r--r--Hashtable.c8
-rw-r--r--Hashtable.h12
-rw-r--r--linux/LinuxProcessList.c2
4 files changed, 12 insertions, 12 deletions
diff --git a/Action.c b/Action.c
index 81e9121d..88ccf6df 100644
--- a/Action.c
+++ b/Action.c
@@ -104,7 +104,7 @@ static bool changePriority(MainPanel* panel, int delta) {
return anyTagged;
}
-static void addUserToVector(hkey_t key, void* userCast, void* panelCast) {
+static void addUserToVector(ht_key_t key, void* userCast, void* panelCast) {
const char* user = userCast;
Panel* panel = panelCast;
Panel_add(panel, (Object*) ListItem_new(user, key));
diff --git a/Hashtable.c b/Hashtable.c
index 1beb2bb2..4f08c162 100644
--- a/Hashtable.c
+++ b/Hashtable.c
@@ -124,7 +124,7 @@ void Hashtable_clear(Hashtable* this) {
assert(Hashtable_isConsistent(this));
}
-static void insert(Hashtable* this, hkey_t key, void* value) {
+static void insert(Hashtable* this, ht_key_t key, void* value) {
unsigned int index = key % this->size;
unsigned int probe = 0;
#ifndef NDEBUG
@@ -194,7 +194,7 @@ void Hashtable_setSize(Hashtable* this, unsigned int size) {
assert(Hashtable_isConsistent(this));
}
-void Hashtable_put(Hashtable* this, hkey_t key, void* value) {
+void Hashtable_put(Hashtable* this, ht_key_t key, void* value) {
assert(Hashtable_isConsistent(this));
assert(this->size > 0);
@@ -211,7 +211,7 @@ void Hashtable_put(Hashtable* this, hkey_t key, void* value) {
assert(this->size > this->items);
}
-void* Hashtable_remove(Hashtable* this, hkey_t key) {
+void* Hashtable_remove(Hashtable* this, ht_key_t key) {
unsigned int index = key % this->size;
unsigned int probe = 0;
#ifndef NDEBUG
@@ -266,7 +266,7 @@ void* Hashtable_remove(Hashtable* this, hkey_t key) {
return res;
}
-void* Hashtable_get(Hashtable* this, hkey_t key) {
+void* Hashtable_get(Hashtable* this, ht_key_t key) {
unsigned int index = key % this->size;
unsigned int probe = 0;
void* res = NULL;
diff --git a/Hashtable.h b/Hashtable.h
index 6d934784..698d2cfc 100644
--- a/Hashtable.h
+++ b/Hashtable.h
@@ -10,12 +10,12 @@ in the source distribution for its full text.
#include <stdbool.h>
-typedef unsigned int hkey_t;
+typedef unsigned int ht_key_t;
-typedef void(*Hashtable_PairFunction)(hkey_t key, void* value, void* userdata);
+typedef void(*Hashtable_PairFunction)(ht_key_t key, void* value, void* userdata);
typedef struct HashtableItem_ {
- hkey_t key;
+ ht_key_t key;
unsigned int probe;
void* value;
} HashtableItem;
@@ -41,11 +41,11 @@ void Hashtable_clear(Hashtable* this);
void Hashtable_setSize(Hashtable* this, unsigned int size);
-void Hashtable_put(Hashtable* this, hkey_t key, void* value);
+void Hashtable_put(Hashtable* this, ht_key_t key, void* value);
-void* Hashtable_remove(Hashtable* this, hkey_t key);
+void* Hashtable_remove(Hashtable* this, ht_key_t key);
-void* Hashtable_get(Hashtable* this, hkey_t key);
+void* Hashtable_get(Hashtable* this, ht_key_t key);
void Hashtable_foreach(Hashtable* this, Hashtable_PairFunction f, void* userData);
diff --git a/linux/LinuxProcessList.c b/linux/LinuxProcessList.c
index 77b1fc8e..434d070e 100644
--- a/linux/LinuxProcessList.c
+++ b/linux/LinuxProcessList.c
@@ -484,7 +484,7 @@ static inline uint64_t fast_strtoull_hex(char **str, int maxlen) {
return result;
}
-static void LinuxProcessList_calcLibSize_helper(ATTR_UNUSED hkey_t key, void* value, void* data) {
+static void LinuxProcessList_calcLibSize_helper(ATTR_UNUSED ht_key_t key, void* value, void* data) {
if (!data)
return;

© 2014-2024 Faster IT GmbH | imprint | privacy policy