X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=includes%2Frts%2FHpc.h;h=bceb81c961877e73db5adb333c12ecf8eee54895;hp=26da35d4cdc5f4b0f4e57c0532b612af020fced0;hb=a52ff7619e8b7d74a9d933d922eeea49f580bca8;hpb=5463b55b7dadc1e9918edb2d8666bf3ed195bc61 diff --git a/includes/rts/Hpc.h b/includes/rts/Hpc.h index 26da35d..bceb81c 100644 --- a/includes/rts/Hpc.h +++ b/includes/rts/Hpc.h @@ -18,16 +18,16 @@ typedef struct _HpcModuleInfo { char *modName; // name of module StgWord32 tickCount; // number of ticks - StgWord32 tickOffset; // offset into a single large .tix Array - StgWord32 hashNo; // Hash number for this module's mix info + StgWord32 hashNo; // Hash number for this module's mix info StgWord64 *tixArr; // tix Array; local for this module + rtsBool from_file; // data was read from the .tix file struct _HpcModuleInfo *next; } HpcModuleInfo; -int hs_hpc_module (char *modName, - StgWord32 modCount, - StgWord32 modHashNo, - StgWord64 *tixArr); +void hs_hpc_module (char *modName, + StgWord32 modCount, + StgWord32 modHashNo, + StgWord64 *tixArr); HpcModuleInfo * hs_hpc_rootModule (void);