* Replaced the simplistic semaphore based R/W lock in the vm_address_space with

the new rw_lock locking primitive.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26578 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2008-07-23 15:45:40 +00:00
parent 190712ced9
commit 4ed05c6869
3 changed files with 55 additions and 59 deletions
+1 -1
View File
@@ -314,7 +314,7 @@ enum {
struct vm_address_space {
struct vm_area *areas;
struct vm_area *area_hint;
sem_id sem;
rw_lock lock;
addr_t base;
addr_t size;
int32 change_count;