This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Runtime / DSTM / interface / plookup.h
diff --git a/Robust/src/Runtime/DSTM/interface/plookup.h b/Robust/src/Runtime/DSTM/interface/plookup.h
deleted file mode 100644 (file)
index d413783..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef _PLOOKUP_H_
-#define _PLOOKUP_H_
-
-#include <stdlib.h>
-#include <stdio.h>
-
-/* This structure is created using a transaction record.
- * It is filled out with pile information necessary for
- * participants involved in a transaction. */
-typedef struct plistnode {
-  unsigned int mid;
-  unsigned int numread;                 /* no of objects modified */
-  unsigned int nummod;                  /* no of objects read */
-  unsigned int numcreated;        /* no of objects created */
-  int sum_bytes;                /* total bytes of objects modified */
-  char *objread;                /* Pointer to array containing oids of objects read and their version numbers*/
-  unsigned int *oidmod;         /* Pointer to array containing oids of modified objects */
-  unsigned int *oidcreated;             /* Pointer to array containing oids of newly created objects */
-  struct plistnode *next;
-} plistnode_t;
-
-plistnode_t  *pCreate(int);
-int pCount(plistnode_t *pile);
-int pListMid(plistnode_t *pile, unsigned int *list);
-void pDelete(plistnode_t *pile);
-
-#endif
-