Added trans.c for transaction funtions. Implemented transStart() and transCreateObj...
[IRC.git] / Robust / src / Runtime / DSTM / interface / llookup.h
index f936078f67520f0313f0a478d89b505f9b790d8e..719e68cb89bb6e45ccbd1d20a78db92e7ddb51dd 100644 (file)
@@ -7,13 +7,13 @@
 #define LOADFACTOR 0.75
 #define HASH_SIZE 100
 
-typedef struct hashlistnode {
+typedef struct lhashlistnode {
        unsigned int oid;
        unsigned int mid;
-       struct hashlistnode *next;
+       struct lhashlistnode *next;
 } lhashlistnode_t;
 
-typedef struct hashtable {
+typedef struct lhashtable {
        lhashlistnode_t *table; // points to beginning of hash table
        unsigned int size;
        unsigned int numelements;