os-cmpi-xen
annotate schema/Xen_MemoryAllocatedFromPool.mof @ 26:a4962bb9446a
Fixed bugs associated with 'make postinstall' target. We were not deriving from
the proper CIM classes in some cases.
Signed-off-by: Jim Fehlig <jfehlig@novell.com>
Signed-off-by: Luke Szymanski <Lukasz.Szymanski@unisys.com>
the proper CIM classes in some cases.
Signed-off-by: Jim Fehlig <jfehlig@novell.com>
Signed-off-by: Luke Szymanski <Lukasz.Szymanski@unisys.com>
author | jfehlig@jfehlig3.provo.novell.com |
---|---|
date | Fri Oct 06 16:07:59 2006 -0600 (2006-10-06) |
parents | 16d625984bc4 |
children |
rev | line source |
---|---|
jfehlig@25 | 1 // Copyright (c) 2006 Novell, Inc. All rights reserved. |
jfehlig@25 | 2 |
jfehlig@25 | 3 // ******************************************************************* |
jfehlig@25 | 4 // Associations |
jfehlig@25 | 5 // ******************************************************************* |
jfehlig@25 | 6 |
jfehlig@25 | 7 // ================================================================== |
jfehlig@25 | 8 // Xen_MemoryAllocatedFromPool |
jfehlig@25 | 9 // ================================================================== |
jfehlig@25 | 10 [Association, |
jfehlig@25 | 11 Provider ("cmpi:Xen_MemoryAllocatedFromPool"), |
jfehlig@25 | 12 Description ( |
jfehlig@26 | 13 "A class derived from CIM_ElementAllocatedFromPool that " |
jfehlig@25 | 14 "associates an instance of Xen_Memory representing the " |
jfehlig@25 | 15 "Xen domain memory with the Xen_MemoryPool from which it " |
jfehlig@25 | 16 "was allocated.")] |
jfehlig@26 | 17 class Xen_MemoryAllocatedFromPool : CIM_ElementAllocatedFromPool { |
jfehlig@25 | 18 |
jfehlig@25 | 19 [Override ("Antecedent"), Description ("The memory resource pool.")] |
jfehlig@25 | 20 Xen_MemoryPool REF Antecedent; |
jfehlig@25 | 21 |
jfehlig@25 | 22 [Override ("Dependent"), Description ("The allocated memory.")] |
jfehlig@25 | 23 Xen_Memory REF Dependent; |
jfehlig@25 | 24 }; |