Changeset 33540 in vbox for trunk/src/recompiler/VBoxRecompiler.c
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r33123 r33540 766 766 767 767 /* 768 * Stop ignoring ignor nable notifications.768 * Stop ignoring ignorable notifications. 769 769 */ 770 770 ASMAtomicDecU32(&pVM->rem.s.cIgnoreAll); … … 1296 1296 * or 32 bits protected mode ring 0 code 1297 1297 * 1298 * The tests are ordered by the likel yhood of being true during normal execution.1298 * The tests are ordered by the likelihood of being true during normal execution. 1299 1299 */ 1300 1300 if (fFlags & (HF_TF_MASK | HF_INHIBIT_IRQ_MASK)) … … 1694 1694 1695 1695 /** 1696 * Record trap occur ance1696 * Record trap occurrence 1697 1697 * 1698 1698 * @returns VBox status code … … 1793 1793 * @remark The caller has to check for important FFs before calling REMR3Run. REMR3State will 1794 1794 * no do this since the majority of the callers don't want any unnecessary of events 1795 * pending that would immediat ly interrupt execution.1795 * pending that would immediately interrupt execution. 1796 1796 */ 1797 1797 REMR3DECL(int) REMR3State(PVM pVM, PVMCPU pVCpu) … … 3790 3790 DISAS_PRINTF("disas error\n"); 3791 3791 cbInstr = 1; 3792 #ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts suppor ing 64-bit code. */3792 #ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts supporting 64-bit code. */ 3793 3793 break; 3794 3794 #endif … … 3971 3971 * @param pVCpuDst The target cpu for this notification. 3972 3972 * TM will not broadcast pending timer events, but use 3973 * a de cidated EMT for them. So, only interrupt REM3973 * a dedicated EMT for them. So, only interrupt REM 3974 3974 * execution if the given CPU is executing in REM. 3975 3975 * @thread Any. … … 4499 4499 * 4500 4500 * @param rc VBox error code. 4501 * @param pszTip Hint about why/when this happen d.4501 * @param pszTip Hint about why/when this happened. 4502 4502 */ 4503 4503 void remAbort(int rc, const char *pszTip)
Note:
See TracChangeset
for help on using the changeset viewer.