Changeset 25692 in vbox for trunk/include
- Timestamp:
- Jan 8, 2010 3:59:45 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56426
- Location:
- trunk/include/iprt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r25638 r25692 862 862 /** The thread is not a valid signaller of the event. */ 863 863 #define VERR_SEM_LV_NOT_SIGNALLER (-376) 864 /** Internal error in the lock validator or related components. */ 865 #define VERR_SEM_LV_INTERNAL_ERROR (-377) 864 866 /** @} */ 865 867 -
trunk/include/iprt/lockvalidator.h
r25685 r25692 730 730 * user will teach it all it needs to know (false). 731 731 * @param fRecursionOk Whether to allow lock recursion or not. 732 * @param fStrictReleaseOrder Enforce strict lock release order or not. 732 733 * @param cMsMinDeadlock Used to raise the sleep interval at which 733 734 * deadlock detection kicks in. Minimum is 1 ms, … … 741 742 */ 742 743 RTDECL(int) RTLockValidatorClassCreateEx(PRTLOCKVALCLASS phClass, PCRTLOCKVALSRCPOS pSrcPos, 743 bool fAutodidact, bool fRecursionOk, 744 bool fAutodidact, bool fRecursionOk, bool fStrictReleaseOrder, 744 745 RTMSINTERVAL cMsMinDeadlock, RTMSINTERVAL cMsMinOrder); 745 746 -
trunk/include/iprt/types.h
r25685 r25692 1497 1497 /** @name Special sub-class values. 1498 1498 * The range 16..UINT32_MAX is available to the user, the range 0..15 is 1499 * reserved for the lock validator. 1499 * reserved for the lock validator. In the user range the locks can only be 1500 * taking in ascending order. 1500 1501 * @{ */ 1501 1502 /** Not allowed to be taken with any other locks in the same class.
Note:
See TracChangeset
for help on using the changeset viewer.