diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-10-19 10:11:29 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-10-19 10:11:29 +0000 |
commit | 7cb0ffcb5a7e6f6ae4cce2adf61b3a3e78bbd78c (patch) | |
tree | 59273b3edb41592f96e7d4ab0c2b2e328e9cb5d0 /rts/Storage.c | |
parent | 3633e894a07a1d198dfc964c51024853c2c96537 (diff) | |
download | haskell-7cb0ffcb5a7e6f6ae4cce2adf61b3a3e78bbd78c.tar.gz |
rename allocated_bytes() to allocatedBytes()
Diffstat (limited to 'rts/Storage.c')
-rw-r--r-- | rts/Storage.c | 4 |
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; { |