diff options
author | Duncan Coutts <duncan@well-typed.com> | 2011-05-23 00:10:21 +0100 |
---|---|---|
committer | Duncan Coutts <duncan@well-typed.com> | 2011-05-23 00:10:21 +0100 |
commit | 96d64fe2175d829f9499656750d51cf577ff9892 (patch) | |
tree | d2f784f6086b830d7429e1b77904f5e500e4e95d /rts/eventlog/EventLog.h | |
parent | e7dcbdc7b68275d23debfec5f17074c55212eeb1 (diff) | |
download | haskell-96d64fe2175d829f9499656750d51cf577ff9892.tar.gz |
Revert "Add capability sets to the event system. Contains code from Duncan Coutts."
This reverts commit 58532eb46041aec8d4cbb48b054cb5b001edb43c.
Turns out it didn't work on Windows and it'll need some non-trivial changes
to make it work on Windows. We'll get it in later once that's sorted out.
Diffstat (limited to 'rts/eventlog/EventLog.h')
-rw-r--r-- | rts/eventlog/EventLog.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/rts/eventlog/EventLog.h b/rts/eventlog/EventLog.h index 26a2e944bf..0cfab5c091 100644 --- a/rts/eventlog/EventLog.h +++ b/rts/eventlog/EventLog.h @@ -35,29 +35,6 @@ void postSchedEvent(Capability *cap, EventTypeNum tag, StgThreadID id, StgWord info1, StgWord info2); /* - * Post a capability set modification event - */ -void postCapsetModifyEvent (EventTypeNum tag, - EventCapsetID capset, - StgWord32 other, - StgWord32 other2); - -/* - * Post a capability set event with a string payload - */ -void postCapsetStrEvent (EventTypeNum tag, - EventCapsetID capset, - char *msg); - -/* - * Post a capability set event with several strings payload - */ -void postCapsetVecEvent (EventTypeNum tag, - EventCapsetID capset, - int argc, - char *msg[]); - -/* * Post a nullary event. */ void postEvent(Capability *cap, EventTypeNum tag); @@ -77,12 +54,6 @@ INLINE_HEADER void postSchedEvent (Capability *cap STG_UNUSED, StgWord info2 STG_UNUSED) { /* nothing */ } -INLINE_HEADER void postCapsetModifyEvent (EventTypeNum tag STG_UNUSED, - EventCapsetID capset STG_UNUSED, - StgWord32 other STG_UNUSED, - StgWord32 other2 STG_UNUSED) -{ /* nothing */ } - INLINE_HEADER void postEvent (Capability *cap STG_UNUSED, EventTypeNum tag STG_UNUSED) { /* nothing */ } |