VirtualBox

Changeset 2162 in vbox for trunk


Ignore:
Timestamp:
Apr 18, 2007 12:32:51 PM (18 years ago)
Author:
vboxsync
Message:

Added DBGFR0Trap01/3Handler

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/dbgf.h

    r746 r2162  
    3737 */
    3838
    39 #ifdef IN_GC
     39 #ifdef IN_GC
    4040/** @addgroup grp_dbgf_gc  The GC DBGF API
    4141 * @ingroup grp_dbgf
     
    6767 */
    6868DBGFGCDECL(int) DBGFGCTrap03Handler(PVM pVM, PCPUMCTXCORE pRegFrame);
     69
     70/** @} */
     71#endif
     72
     73#ifdef IN_R0
     74/** @addgroup grp_dbgf_gc  The R0 DBGF API
     75 * @ingroup grp_dbgf
     76 * @{
     77 */
     78
     79/**
     80 * \#DB (Debug event) handler.
     81 *
     82 * @returns VBox status code.
     83 *          VINF_SUCCESS means we completely handled this trap,
     84 *          other codes are passed execution to host context.
     85 *
     86 * @param   pVM         The VM handle.
     87 * @param   pRegFrame   Pointer to the register frame for the trap.
     88 * @param   uDr6        The DR6 register value.
     89 */
     90DBGFR0DECL(int) DBGFR0Trap01Handler(PVM pVM, PCPUMCTXCORE pRegFrame, RTUINTREG uDr6);
     91
     92/**
     93 * \#BP (Breakpoint) handler.
     94 *
     95 * @returns VBox status code.
     96 *          VINF_SUCCESS means we completely handled this trap,
     97 *          other codes are passed execution to host context.
     98 *
     99 * @param   pVM         The VM handle.
     100 * @param   pRegFrame   Pointer to the register frame for the trap.
     101 */
     102DBGFR0DECL(int) DBGFR0Trap03Handler(PVM pVM, PCPUMCTXCORE pRegFrame);
    69103
    70104/** @} */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette