summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-10-19 10:11:29 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-10-19 10:11:29 +0000
commit7cb0ffcb5a7e6f6ae4cce2adf61b3a3e78bbd78c (patch)
tree59273b3edb41592f96e7d4ab0c2b2e328e9cb5d0 /includes
parent3633e894a07a1d198dfc964c51024853c2c96537 (diff)
downloadhaskell-7cb0ffcb5a7e6f6ae4cce2adf61b3a3e78bbd78c.tar.gz
rename allocated_bytes() to allocatedBytes()
Diffstat (limited to 'includes')
-rw-r--r--includes/Storage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/Storage.h b/includes/Storage.h
index 0b93378083..1346715ffb 100644
--- a/includes/Storage.h
+++ b/includes/Storage.h
@@ -137,7 +137,7 @@ extern void freeStorage(void);
rtsBool doYouWantToGC(void) Returns True if the storage manager is
ready to perform a GC, False otherwise.
- lnat allocated_bytes(void) Returns the number of bytes allocated
+ lnat allocatedBytes(void) Returns the number of bytes allocated
via allocate() since the last GC.
Used in the reporting of statistics.
@@ -148,7 +148,7 @@ extern void freeStorage(void);
extern StgPtr allocate ( nat n );
extern StgPtr allocateLocal ( Capability *cap, nat n );
extern StgPtr allocatePinned ( nat n );
-extern lnat allocated_bytes ( void );
+extern lnat allocatedBytes ( void );
extern bdescr * RTS_VAR(small_alloc_list);
extern bdescr * RTS_VAR(large_alloc_list);