VirtualBox

source: vbox/trunk/src/VBox/VMM/DBGFModule.cpp@ 16560

Last change on this file since 16560 was 12677, checked in by vboxsync, 16 years ago

DBGF file headers.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1/* $Id: DBGFModule.cpp 12677 2008-09-24 07:19:03Z vboxsync $ */
2/** @file
3 * DBGF - Debugger Facility, Module & Segment Management.
4 */
5
6/*
7 * Copyright (C) 2008 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/** @page pg_dbgf_module DBGFModule - Module & Segment Management
24 *
25 * A module is our representation of an executable binary. It's main purpose
26 * is to provide segments that can be mapped into address spaces and thereby
27 * provide debug info for those parts for the guest code or data.
28 *
29 * This module will not deal directly with debug info, it will only serve
30 * as an interface between the debugger / symbol lookup and the debug info
31 * readers.
32 *
33 * An executable binary doesn't need to have a file, or that is, we don't
34 * need the file to create a module for it. There will be interfaces for
35 * ROMs to register themselves so we can get to their symbols, and there
36 * will be interfaces for the guest OS plugins (@see pg_dbgf_os) to
37 * register kernel, drivers and other global modules.
38 */
39
40
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use