diff options
author | andy@galois.com <unknown> | 2007-01-09 19:40:11 +0000 |
---|---|---|
committer | andy@galois.com <unknown> | 2007-01-09 19:40:11 +0000 |
commit | 53a5d0b0186379be1fb378b1ed591ff5f359178c (patch) | |
tree | 63291dda3fb53af67a6553460689a586a409ff77 /includes/RtsExternal.h | |
parent | 272fb49ecfeffe7aaa66b9b61bab12d8a858458d (diff) | |
download | haskell-53a5d0b0186379be1fb378b1ed591ff5f359178c.tar.gz |
Adding command channel for the hpc debugger to the hpc part of the RTS
Diffstat (limited to 'includes/RtsExternal.h')
-rw-r--r-- | includes/RtsExternal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/RtsExternal.h b/includes/RtsExternal.h index a105194487..37a9bd485c 100644 --- a/includes/RtsExternal.h +++ b/includes/RtsExternal.h @@ -69,8 +69,8 @@ extern void freeHaskellFunctionPtr(void* ptr); /* Hpc stuff */ extern int hs_hpc_module(char *modName,int modCount,StgWord64 *tixArr); extern void hs_hpc_tick(int globIx,struct StgTSO_ *current_tso); -extern void hs_hpc_event(char *msg,struct StgTSO_ *current_tso); - +extern void hs_hpc_raise_event(struct StgTSO_ *current_tso); +extern void hs_hpc_thread_finished_event(struct StgTSO_ *current_tso); #if defined(mingw32_HOST_OS) extern int rts_InstallConsoleEvent ( int action, StgStablePtr *handler ); |