summaryrefslogtreecommitdiff
path: root/rts/Storage.c
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 /rts/Storage.c
parent3633e894a07a1d198dfc964c51024853c2c96537 (diff)
downloadhaskell-7cb0ffcb5a7e6f6ae4cce2adf61b3a3e78bbd78c.tar.gz
rename allocated_bytes() to allocatedBytes()
Diffstat (limited to 'rts/Storage.c')
-rw-r--r--rts/Storage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Storage.c b/rts/Storage.c
index 0c9c60e580..a657ce8d3e 100644
--- a/rts/Storage.c
+++ b/rts/Storage.c
@@ -615,7 +615,7 @@ allocate( nat n )
}
lnat
-allocated_bytes( void )
+allocatedBytes( void )
{
lnat allocated;
@@ -874,7 +874,7 @@ calcAllocated( void )
nat allocated;
bdescr *bd;
- allocated = allocated_bytes();
+ allocated = allocatedBytes();
allocated += countNurseryBlocks() * BLOCK_SIZE_W;
{