Replaced region_id with area_id.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9857 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-11-08 14:11:46 +00:00
parent 070f286492
commit 98cc327660
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -66,7 +66,7 @@ enum {
typedef typedef
struct elf_region_t { struct elf_region_t {
region_id id; area_id id;
addr_t start; addr_t start;
addr_t size; addr_t size;
addr_t vmstart; addr_t vmstart;
@@ -858,7 +858,7 @@ search_path_for_type(image_type type)
if (path != NULL) if (path != NULL)
return path; return path;
switch(type) { switch (type) {
case B_APP_IMAGE: case B_APP_IMAGE:
return "/boot/home/config/bin:" return "/boot/home/config/bin:"
"/bin:" "/bin:"
+3 -3
View File
@@ -1,5 +1,5 @@
/* /*
** Copyright 2002-2004, The Haiku Team. All rights reserved. ** Copyright 2002-2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the Haiku License. ** Distributed under the terms of the Haiku License.
** **
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved. ** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
@@ -47,9 +47,9 @@ static cbuf *sFreeBufferNoBlockList;
static spinlock sNoBlockSpinlock; static spinlock sNoBlockSpinlock;
static spinlock sLowlevelSpinlock; static spinlock sLowlevelSpinlock;
static region_id sBufferArea; static area_id sBufferArea;
static cbuf *sBuffer; static cbuf *sBuffer;
static region_id sBitmapArea; static area_id sBitmapArea;
static uint8 *sBitmap; static uint8 *sBitmap;
+2 -2
View File
@@ -1,5 +1,5 @@
/* /*
** Copyright 2002-2004, The Haiku Team. All rights reserved. ** Copyright 2002-2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the Haiku License. ** Distributed under the terms of the Haiku License.
** **
** Copyright 2001, Travis Geiselbrecht. All rights reserved. ** Copyright 2001, Travis Geiselbrecht. All rights reserved.
@@ -1071,7 +1071,7 @@ elf_load_user_image(const char *path, struct team *p, int flags, addr_t *entry)
for (i = 0; i < eheader.e_phnum; i++) { for (i = 0; i < eheader.e_phnum; i++) {
char regionName[64]; char regionName[64];
char *regionAddress; char *regionAddress;
region_id id; area_id id;
if (pheaders[i].p_type != PT_LOAD) if (pheaders[i].p_type != PT_LOAD)
continue; continue;