fix compile errors
authoradash <adash>
Thu, 3 Dec 2009 19:13:10 +0000 (19:13 +0000)
committeradash <adash>
Thu, 3 Dec 2009 19:13:10 +0000 (19:13 +0000)
Robust/src/Runtime/DSTM/interface/altprelookup.h

index 1a60243ebc8b72f444e8e88c1814d89388b2fb0e..2c34f372e4157baa809f5b70dd15943b1cd84a73 100644 (file)
@@ -4,7 +4,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <pthread.h>
-#include "dstm.h"
+//#include "dstm.h"
 
 #define PLOADFACTOR 0.25
 #define PHASH_SIZE 1024
@@ -16,7 +16,7 @@ typedef struct prehashlistnode {
 } prehashlistnode_t;
 
 
-struct lockarray {
+struct prelockarray {
    volatile unsigned int lock;
    int buf[15];
 };
@@ -34,7 +34,7 @@ typedef struct prehashtable {
   unsigned int numelements;
   unsigned int threshold;
   double loadfactor;
-  struct lockarray larray[NUMLOCKS];
+  struct prelockarray larray[NUMLOCKS];
 } prehashtable_t;
 
 /* Prototypes for hash*/