Skip to content
Snippets Groups Projects
Commit 15dd0e90 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2000-04-26 11:54:28 by simonmar]

restore the two-space sanity checking code.
parent 6313cbdb
No related merge requests found
/* -----------------------------------------------------------------------------
* $Id: Storage.c,v 1.24 2000/04/14 15:18:07 sewardj Exp $
* $Id: Storage.c,v 1.25 2000/04/26 11:54:28 simonmar Exp $
*
* (c) The GHC Team, 1998-1999
*
......@@ -439,6 +439,7 @@ allocate(nat n)
* (eg. running threads), so garbage collecting early won't make
* much difference.
*/
alloc_blocks += req_blocks;
RELEASE_LOCK(&sm_mutex);
return bd->start;
......@@ -712,8 +713,8 @@ extern void
checkSanity(nat N)
{
nat g, s;
fprintf(stderr, "--- checkSanity %d\n", N );
if (0&&RtsFlags.GcFlags.generations == 1) {
if (RtsFlags.GcFlags.generations == 1) {
checkHeap(g0s0->to_space, NULL);
checkChain(g0s0->large_objects);
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment