Fixed a prototype.

Updated several structures because of the int/int32/status_t change.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1139 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2002-09-24 00:09:38 +00:00
parent d98c7edc06
commit 366a7cf67c
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ int sys_suspend_thread(thread_id tid);
int sys_resume_thread(thread_id tid);
int sys_kill_thread(thread_id tid);
status_t sys_wait_on_thread(thread_id tid, int *retcode);
status_t sys_wait_on_thread(thread_id tid, status_t *retcode);
int sys_kill_team(team_id tid);
team_id sys_get_current_team_id();
+5 -5
View File
@@ -24,7 +24,7 @@ typedef struct vm_page {
struct vm_page *cache_prev;
struct vm_page *cache_next;
unsigned int ref_count;
int32 ref_count;
unsigned int type : 2;
unsigned int state : 3;
@@ -54,7 +54,7 @@ typedef struct vm_cache_ref {
struct vm_region *region_list;
int ref_count;
int32 ref_count;
} vm_cache_ref;
// vm_cache
@@ -87,7 +87,7 @@ typedef struct vm_region {
addr size;
int lock;
int wiring;
int ref_count;
int32 ref_count;
struct vm_cache_ref *cache_ref;
off_t cache_offset;
@@ -122,8 +122,8 @@ typedef struct vm_address_space {
vm_translation_map translation_map;
char *name;
aspace_id id;
int ref_count;
int fault_count;
int32 ref_count;
int32 fault_count;
int state;
addr scan_va;
addr working_set_size;