cim_memorymappedio.mof

来自「Pegasus is an open-source implementation」· MOF 代码 · 共 55 行

MOF
55
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_MemoryMappedIO// ==================================================================   [UMLPackagePath ( "CIM::System::SystemResources" ),       Version ( "2.6.0" ), Description (       "Personal Computer architecture Memory Mapped I/O. This class "       "addresses both memory and port I/O resources. The property, "       "MappedResource, defines whether memory or I/O is mapped (and "       "for I/O whether the mapping is to a memory or a port space).")]class CIM_MemoryMappedIO : CIM_SystemResource {      [Key, Propagated ( "CIM_ComputerSystem.CreationClassName" ),        Description (          "The scoping ComputerSystem's CreationClassName."),        MaxLen ( 256 )]   string CSCreationClassName;      [Key, Propagated ( "CIM_ComputerSystem.Name" ), Description (          "The scoping ComputerSystem's Name."),        MaxLen ( 256 )]   string CSName;      [Key, Description (          "CreationClassName indicates the name of the class or the "          "subclass used in the creation of an instance. When used "          "with the other key properties of this class, this property "          "allows all instances of this class and its subclasses to be "          "uniquely identified."),        MaxLen ( 256 )]   string CreationClassName;      [Key, Description (          "A part of the object's key value, the starting address of "          "memory mapped I/O."),        MappingStrings { "MIF.DMTF|Memory Mapped I/O|001.1" }]   uint64 StartingAddress;      [Description (          "Ending address of memory mapped I/O."),        MappingStrings { "MIF.DMTF|Memory Mapped I/O|001.2" }]   uint64 EndingAddress;      [Description (          "Type of memory mapped I/O. MappedResource defines whether "          "memory or I/O is mapped, and for I/O, whether the mapping "          "is to a memory or a port space."),        ValueMap { "0", "1", "2", "3" },        Values { "Other", "Mapped Memory", "I/O Mapped to Memory Space",          "I/O Mapped to Port Space" }]   uint16 MappedResource;};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?