Replaced PAGE_SIZE with B_PAGE_SIZE.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9432 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
4d41be9656
commit
3cbdc52595
@ -1,6 +1,6 @@
|
||||
/*
|
||||
** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
||||
** Distributed under the terms of the OpenBeOS License.
|
||||
** Distributed under the terms of the Haiku License.
|
||||
*/
|
||||
|
||||
|
||||
@ -206,7 +206,7 @@ elf_load_image(int fd, preloaded_image *image)
|
||||
continue;
|
||||
|
||||
region->start = ROUNDOWN(header.p_vaddr, B_PAGE_SIZE);
|
||||
region->size = ROUNDUP(header.p_memsz + (header.p_vaddr % B_PAGE_SIZE), PAGE_SIZE);
|
||||
region->size = ROUNDUP(header.p_memsz + (header.p_vaddr % B_PAGE_SIZE), B_PAGE_SIZE);
|
||||
region->delta = -region->start;
|
||||
|
||||
TRACE(("segment %d: start = %p, size = %lu, delta = %lx\n", i,
|
||||
|
Loading…
Reference in New Issue
Block a user