X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=includes%2FRtsExternal.h;h=b95da387bdb33c994355ade8988a12099b3a8759;hb=87c93cf56c83abf0148c91d5972dbe65dc72c38a;hp=78b36ab7f78d80a286386425763cb9dcc0008d3d;hpb=3e2cd89a3852fff389b0a66064a4bc29369e9d7f;p=ghc-hetmet.git diff --git a/includes/RtsExternal.h b/includes/RtsExternal.h index 78b36ab..b95da38 100644 --- a/includes/RtsExternal.h +++ b/includes/RtsExternal.h @@ -73,13 +73,13 @@ extern void* createAdjustor(int cconv, StgStablePtr hptr, StgFunPtr wptr, extern void freeHaskellFunctionPtr(void* ptr); /* Hpc stuff */ -extern int hs_hpc_module(char *modName,unsigned int modCount,unsigned int modHashNo,StgWord64 *tixArr); +extern int hs_hpc_module(char *modName, StgWord32 modCount, StgWord32 modHashNo,StgWord64 *tixArr); // Simple linked list of modules typedef struct _HpcModuleInfo { char *modName; // name of module - unsigned int tickCount; // number of ticks - unsigned int tickOffset; // offset into a single large .tix Array - unsigned int hashNo; // Hash number for this module's mix info + StgWord32 tickCount; // number of ticks + StgWord32 tickOffset; // offset into a single large .tix Array + StgWord32 hashNo; // Hash number for this module's mix info StgWord64 *tixArr; // tix Array; local for this module struct _HpcModuleInfo *next; } HpcModuleInfo;