Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3775 → Rev 3776

/trunk/kernel/arch/ia64/src/mm/frame.c
50,7 → 50,7
 
#define MINCONF 1
 
uintptr_t last_frame;
uintptr_t last_frame = 0;
 
void frame_arch_init(void)
{
70,7 → 70,9
size >> FRAME_WIDTH,
max(MINCONF, abase >> FRAME_WIDTH),
0);
}
}
if (abase + size > last_frame)
last_frame = abase + size;
}
}