diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2014-07-18 23:55:46 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-20 16:55:51 -0500 |
commit | 80868ec8e6483fcc2a70754ebc5e3d3d7522a088 (patch) | |
tree | 2c3916badb59e17357ff75c72383d6277e11be12 | |
parent | fb936e0db55b0522ddcabd39833c99c7c2871170 (diff) | |
download | haskell-80868ec8e6483fcc2a70754ebc5e3d3d7522a088.tar.gz |
rts: drop unused 'SpinLockCount' typedef
Summary: Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Test Plan: git grep, git log -SSpinLockCount, build test
Reviewers: austin, simonmar
Reviewed By: austin, simonmar
Subscribers: phaskell, simonmar, relrod, carter
Differential Revision: https://phabricator.haskell.org/D76
-rw-r--r-- | includes/rts/SpinLock.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/includes/rts/SpinLock.h b/includes/rts/SpinLock.h index b6eccced8a..b54d678fa5 100644 --- a/includes/rts/SpinLock.h +++ b/includes/rts/SpinLock.h @@ -34,8 +34,6 @@ typedef struct SpinLock_ typedef StgWord SpinLock; #endif -typedef StgWord SpinLockCount; - #if defined(PROF_SPIN) // PROF_SPIN enables counting the number of times we spin on a lock |