From c50bdf84b609f554c278f7f2719b2735a129b71d Mon Sep 17 00:00:00 2001 From: bdemsky Date: Thu, 16 Apr 2009 07:40:55 +0000 Subject: [PATCH] bug fixes --- Robust/src/Runtime/thread.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Robust/src/Runtime/thread.c b/Robust/src/Runtime/thread.c index 11a7d762..24eb70cd 100644 --- a/Robust/src/Runtime/thread.c +++ b/Robust/src/Runtime/thread.c @@ -111,6 +111,9 @@ void initializethreads() { signal(SIGPIPE, SIG_IGN); #ifdef STM newobjs=calloc(1, sizeof(struct objlist)); + t_cache = objstrCreate(1048576); + t_reserve=NULL; + t_chashCreate(CHASH_SIZE, CLOADFACTOR); #endif } -- 2.34.1