changes and bug fixes
[IRC.git] / Robust / src / Runtime / DSTM / interface / objstr.c
index 991bd239f7d68fbe198021b979dad508d85ddade..a8910138a1e198d97052470b962b51f5e4b67540 100644 (file)
@@ -60,11 +60,3 @@ void *objstrAlloc(objstr_t *store, unsigned int size)
                        store = store->next;
        }
 }
-
-void clearObjStore() {
-  objstr_t *tmp = prefetchcache;
-  while(tmp != NULL) {
-    bzero(tmp+1, tmp->size);
-    tmp = tmp->next;
-  }
-}