Changeset 13001 in vbox
- Timestamp:
- Oct 6, 2008 11:06:14 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37439
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/VBox-doc.c
r12653 r13001 27 27 * @section pg_main_comp Components 28 28 * 29 * - VM / VMM / GVM / GVMM - Virtual Machine Monitor. 30 * - CFGM - Configuration Manager. 31 * - CPUM - CPU Monitor. 29 * - VM / @ref pg_vmm "VMM" / GVM / @ref pg_gvmm "GVMM" - Virtual Machine 30 * Monitor. 31 * - @ref pg_cfgm 32 * - @ref pg_cpum 32 33 * - CSAM - Guest OS Code Scanning and Analyis Manager. 33 * - DBGF - Debugging Facility.34 * - @ref pg_dbgf 34 35 * - DBGC - Debugger Console. 35 36 * - VBoxDbg - Debugger GUI (Qt). 36 37 * - DIS - Disassembler. 37 * - EM - Excution Monitor.38 * - @ref pg_em 38 39 * - HWACCM - Intel/AMD VM Hardware Support Manager. 39 40 * - REM - Recompiled Execution Monitor. 40 * - GMM - Global Memory Manager.41 * - MM - Memory Monitor.42 * - PGM - Page Monitor43 * - SELM - Selector Monitor44 * - IOM - Input / Output Monitor.41 * - @ref pg_gmm 42 * - @ref pg_mm 43 * - @ref pg_pgm 44 * - @ref pg_selm 45 * - @ref pg_iom 45 46 * - PATM - Dynamic Guest OS Patching Manager. 46 * - PDM - Pluggable Device Manager.47 * - @ref pg_pdm 47 48 * - Devices / USB Devices, Drivers and their public interfaces. 48 49 * - Async I/O Completion API. … … 51 52 * - Queue API. 52 53 * - Thread API. 53 * - SSM - Save State Manager.54 * - STAM - Statistics Manager.55 * - TM - Time Monitor.56 * - TRPM - Trap & Interrupt Monitor54 * - @ref pg_ssm 55 * - @ref pg_stam 56 * - @ref pg_tm 57 * - @ref pg_trpm 57 58 * - Pluggable Components (via PDM). 58 59 * - DevPCArch - PC Architecture Device (chipset, legacy ++). … … 94 95 * - VBoxUSB - The USB support driver. 95 96 * - VBoxTAP - The Host Interface Networking driver. 97 * - @ref pg_netflt 96 98 * - Host Services. 97 99 * - Shared Clipboard. -
trunk/src/VBox/VMM/PGM.cpp
r12989 r13001 23 23 /** @page pg_pgm PGM - The Page Manager and Monitor 24 24 * 25 * See also @ref pg_pgmPhys, @ref pg_pgm_pool. 25 26 * 26 27 * -
trunk/src/VBox/VMM/SELM.cpp
r12989 r13001 18 18 * Clara, CA 95054 USA or visit http://www.sun.com if you need 19 19 * additional information or have any questions. 20 */ 21 22 /** @page pg_selm SELM - The Selector Manager 23 * 24 * Manages the hypervisor GDT entires, monitors and shadows the guest GDT, LDT 25 * and TSS. Only active in raw-mode. 26 * 20 27 */ 21 28 -
trunk/src/VBox/VMM/STAM.cpp
r12989 r13001 18 18 * Clara, CA 95054 USA or visit http://www.sun.com if you need 19 19 * additional information or have any questions. 20 */ 21 22 /** @page pg_stam STAM - The Statistics Manager 23 * 24 * The purpose for the statistics manager is to present the rest of the system 25 * with a somewhat uniform way of accessing VMM statistics. STAM sports a couple 26 * of different APIs for accessing them: STAMR3EnumU, STAMR3SnapshotU, 27 * STAMR3DumpU, STAMR3DumpToReleaseLogU. Main is exposing the XML based one, 28 * STAMR3SnapshotU. 29 * 30 * The rest of the VMM together with the devices and drivers registers their 31 * statistics with STAM giving them a name. The name is like hierarchical, the 32 * components separated by slashes ('/'). 33 * 20 34 */ 21 35 -
trunk/src/VBox/VMM/VMMR0/GVMMR0.cpp
r12579 r13001 21 21 22 22 23 /** @page pg_ GVMMGVMM - The Global VM Manager23 /** @page pg_gvmm GVMM - The Global VM Manager 24 24 * 25 25 * The Global VM Manager lives in ring-0. It's main function at the moment
Note:
See TracChangeset
for help on using the changeset viewer.