diff options
author | donnie@darthik.com <unknown> | 2009-04-13 01:17:45 +0000 |
---|---|---|
committer | donnie@darthik.com <unknown> | 2009-04-13 01:17:45 +0000 |
commit | b97043f3f4ba6d24c5c8216414801b307463ee49 (patch) | |
tree | 261aa314712458668d62469dab6ccf3313e37043 /rts/eventlog | |
parent | 9211ec0183bbe923ec6c5997fa695e5f5a3eefab (diff) | |
download | haskell-b97043f3f4ba6d24c5c8216414801b307463ee49.tar.gz |
Removed unused function postEventTypeID.
postEventTypeID was used to post event marker IDs, but instead we just
call postWord16 directly; thus, this function is unused.
Diffstat (limited to 'rts/eventlog')
-rw-r--r-- | rts/eventlog/EventLog.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/rts/eventlog/EventLog.c b/rts/eventlog/EventLog.c index d44460a83d..990820fd92 100644 --- a/rts/eventlog/EventLog.c +++ b/rts/eventlog/EventLog.c @@ -106,9 +106,6 @@ static inline void postWord64(EventsBuf *eb, StgWord64 i) static inline void postEventTypeNum(EventsBuf *eb, EventTypeNum etNum) { postWord16(eb, etNum); } -static inline void postEventTypeID(EventsBuf *eb, StgWord16 etID) -{ postWord16(eb, etID); } - static inline void postTimestamp(EventsBuf *eb, Timestamp t) { postWord64(eb,t); } |