VirtualBox

Changeset 25406 in vbox for trunk/include


Ignore:
Timestamp:
Dec 15, 2009 2:23:53 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
56035
Message:

IPRT,PDMCritSect: Lock validation can only be performed in ring-3; fixed #PF on 32-bit darwin with debug builds. Hopefully fixed the recursion issue on windows.

Location:
trunk/include/iprt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/critsect.h

    r25368 r25406  
    3333#include <iprt/cdefs.h>
    3434#include <iprt/types.h>
    35 #include <iprt/lockvalidator.h>
     35#include <iprt/assert.h>
    3636#ifdef IN_RING3
    37 #include <iprt/thread.h>
     37# include <iprt/thread.h>
    3838#endif
    3939
  • trunk/include/iprt/lockvalidator.h

    r25398 r25406  
    3434#include <iprt/types.h>
    3535#include <iprt/assert.h>
     36#include <iprt/thread.h>
    3637
    3738
     
    6566    /** Pointer to the lock record below us. Only accessed by the owner. */
    6667    R3R0PTRTYPE(PRTLOCKVALIDATORREC)    pDown;
     68    /** Recursion count */
     69    uint32_t                            cRecursion;
     70    /** The lock sub-class. */
     71    uint32_t volatile                   uSubClass;
    6772    /** The lock class. */
    6873    RTLOCKVALIDATORCLASS                hClass;
    69     /** The lock sub-class. */
    70     uint32_t volatile                   uSubClass;
    71     /** Reserved for future use. */
    72     uint32_t                            u32Reserved;
    7374    /** Pointer to the lock. */
    7475    RTHCPTR                             hLock;
     
    167168
    168169/**
     170 * Change the thread state to blocking and do deadlock detection.
     171 *
     172 * @param   pRec                The validator record we're blocing on.
     173 * @param   hThread             The current thread.  Shall not be NIL_RTTHREAD!
     174 * @param   enmState            The sleep state.
     175 * @param   pvBlock             Pointer to a RTLOCKVALIDATORREC structure.
     176 * @param   fRecursiveOk        Whether it's ok to recurse.
     177 * @param   uId                 Where we are blocking.
     178 * @param   RT_SRC_POS_DECL     Where we are blocking.
     179 */
     180RTDECL(void) RTLockValidatorCheckBlocking(PRTLOCKVALIDATORREC pRec, RTTHREAD hThread,
     181                                          RTTHREADSTATE enmState, bool fRecursiveOk,
     182                                          RTHCUINTPTR uId, RT_SRC_POS_DECL);
     183
     184/**
    169185 * Check the exit order.
    170186 *
     
    189205RTDECL(int)  RTLockValidatorCheckReleaseOrder(PRTLOCKVALIDATORREC pRec, RTTHREAD hThread);
    190206
     207
    191208/**
    192209 * Record the specified thread as lock owner.
     
    226243/*RTDECL(int) RTLockValidatorClassCreate();*/
    227244
     245
    228246RT_C_DECLS_END
    229247
  • trunk/include/iprt/thread.h

    r25398 r25406  
    649649
    650650/**
    651  * Change the thread state to blocking and do deadlock detection.
    652  *
    653  * This is a RT_STRICT method for debugging locks and detecting deadlocks.
    654  *
    655  * @param   hThread         The current thread.
    656  * @param   enmState        The sleep state.
    657  * @param   pvBlock         Pointer to a RTLOCKVALIDATORREC structure.
    658  * @param   fRecursiveOk    Whether it's ok to recurse.
    659  * @param   uId             Where we are blocking.
    660  * @param   RT_SRC_POS_DECL Where we are blocking.
    661  *
    662  * @todo    Move this to RTLockValidator.
    663  */
    664 RTDECL(void) RTThreadBlockingDebug(RTTHREAD hThread, RTTHREADSTATE enmState, bool fRecursiveOk,
    665                                    PRTLOCKVALIDATORREC pValidatorRec, RTHCUINTPTR uId, RT_SRC_POS_DECL);
     651 * Translate a thread state into a string.
     652 *
     653 * @returns Pointer to a read-only string containing the state name.
     654 * @param   enmState            The state.
     655 */
     656RTDECL(const char *) RTThreadStateName(RTTHREADSTATE enmState);
    666657
    667658
Note: See TracChangeset for help on using the changeset viewer.

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