- Timestamp:
- May 7, 2008 6:22:43 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/thread.cpp
r8669 r8679 1080 1080 RTDECL(int32_t) RTThreadGetWriteLockCount(RTTHREAD Thread) 1081 1081 { 1082 if (Thread == NIL_RTTHREAD) 1083 return 0; 1084 1082 1085 PRTTHREADINT pThread = rtThreadGet(Thread); 1083 1086 if (!pThread) … … 1130 1133 RTDECL(int32_t) RTThreadGetReadLockCount(RTTHREAD Thread) 1131 1134 { 1135 if (Thread == NIL_RTTHREAD) 1136 return 0; 1137 1132 1138 PRTTHREADINT pThread = rtThreadGet(Thread); 1133 1139 if (!pThread)
Note:
See TracChangeset
for help on using the changeset viewer.