From 3551420440386ad21b5a9c7a9f38fb85f2f0e4e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 3 Sep 2004 19:06:12 +0000 Subject: [PATCH] Eliminated the "data" field in vm_store - since VM stores allocate their structure themselves, they can just subclass that structure. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8833 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/vm_types.h | 1 - 1 file changed, 1 deletion(-) diff --git a/headers/private/kernel/vm_types.h b/headers/private/kernel/vm_types.h index 479aa28688..ddf58cc76a 100644 --- a/headers/private/kernel/vm_types.h +++ b/headers/private/kernel/vm_types.h @@ -127,7 +127,6 @@ typedef struct vm_address_space { typedef struct vm_store { struct vm_store_ops *ops; struct vm_cache *cache; - void *data; off_t committed_size; } vm_store;