1 /* 2 * Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de. All rights reserved. 3 * 4 * Distributed under the terms of the MIT License. 5 */ 6 #ifndef INTEL_H 7 #define INTEL_H 8 9 #include <SupportDefs.h> 10 11 #include "PartitionMap.h" 12 13 14 // A PartitionMap with reference count. 15 struct PartitionMapCookie : PartitionMap { PartitionMapCookiePartitionMapCookie16 PartitionMapCookie() : ref_count(1) {} 17 18 int32 ref_count; 19 }; 20 21 22 #endif // INTEL_H 23