Changeset 57926 in vbox for trunk/include/iprt/critsect.h
- Timestamp:
- Sep 28, 2015 2:05:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/critsect.h
r57004 r57926 175 175 * @param pCritSect The critical section. 176 176 * @param uId Where we're entering the section. 177 * @param pszFile The source position - file. 178 * @param iLine The source position - line. 179 * @param pszFunction The source position - function. 177 * @param SRC_POS The source position where call is being made from. 178 * Use RT_SRC_POS when possible. Optional. 180 179 */ 181 180 RTDECL(int) RTCritSectEnterDebug(PRTCRITSECT pCritSect, RTHCUINTPTR uId, RT_SRC_POS_DECL); … … 205 204 * @param pCritSect The critical section. 206 205 * @param uId Where we're entering the section. 207 * @param pszFile The source position - file. 208 * @param iLine The source position - line. 209 * @param pszFunction The source position - function. 206 * @param SRC_POS The source position where call is being made from. 207 * Use RT_SRC_POS when possible. Optional. 210 208 */ 211 209 RTDECL(int) RTCritSectTryEnterDebug(PRTCRITSECT pCritSect, RTHCUINTPTR uId, RT_SRC_POS_DECL); … … 244 242 * @param papCritSects Array of critical section pointers. 245 243 * @param uId Where we're entering the section. 246 * @param pszFile The source position - file. 247 * @param iLine The source position - line. 248 * @param pszFunction The source position - function. 244 * @param SRC_POS The source position where call is being made from. 245 * Use RT_SRC_POS when possible. Optional. 249 246 * 250 247 * @remark See RTCritSectEnterMultiple(). … … 525 522 * @param pThis Pointer to the read/write critical section. 526 523 * @param uId Where we're entering the section. 527 * @param pszFile The source position - file. 528 * @param iLine The source position - line. 529 * @param pszFunction The source position - function. 524 * @param SRC_POS The source position where call is being made from. 525 * Use RT_SRC_POS when possible. Optional. 530 526 */ 531 527 RTDECL(int) RTCritSectRwEnterSharedDebug(PRTCRITSECTRW pThis, RTHCUINTPTR uId, RT_SRC_POS_DECL); … … 557 553 * @param pThis Pointer to the read/write critical section. 558 554 * @param uId Where we're entering the section. 559 * @param pszFile The source position - file. 560 * @param iLine The source position - line. 561 * @param pszFunction The source position - function. 555 * @param SRC_POS The source position where call is being made from. 556 * Use RT_SRC_POS when possible. Optional. 562 557 */ 563 558 RTDECL(int) RTCritSectRwTryEnterSharedDebug(PRTCRITSECTRW pThis, RTHCUINTPTR uId, RT_SRC_POS_DECL); … … 594 589 * @param pThis Pointer to the read/write critical section. 595 590 * @param uId Where we're entering the section. 596 * @param pszFile The source position - file. 597 * @param iLine The source position - line. 598 * @param pszFunction The source position - function. 591 * @param SRC_POS The source position where call is being made from. 592 * Use RT_SRC_POS when possible. Optional. 599 593 */ 600 594 RTDECL(int) RTCritSectRwEnterExclDebug(PRTCRITSECTRW pThis, RTHCUINTPTR uId, RT_SRC_POS_DECL); … … 626 620 * @param pThis Pointer to the read/write critical section. 627 621 * @param uId Where we're entering the section. 628 * @param pszFile The source position - file. 629 * @param iLine The source position - line. 630 * @param pszFunction The source position - function. 622 * @param SRC_POS The source position where call is being made from. 623 * Use RT_SRC_POS when possible. Optional. 631 624 */ 632 625 RTDECL(int) RTCritSectRwTryEnterExclDebug(PRTCRITSECTRW pThis, RTHCUINTPTR uId, RT_SRC_POS_DECL);
Note:
See TracChangeset
for help on using the changeset viewer.