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:
@@ -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:"
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user