Subversion Repositories HelenOS

Compare Revisions

Regard 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)
{
71,6 → 71,8
max(MINCONF, abase >> FRAME_WIDTH),
0);
}
if (abase + size > last_frame)
last_frame = abase + size;
}
}