Skip to content

Commit b9ca3a8

Browse files
authored
fix: reset lock owner thread id on stack unlock (project-chip#37361)
1 parent 50ccd4f commit b9ca3a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/include/platform/internal/GenericPlatformManagerImpl_POSIX.ipp

+2-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ void GenericPlatformManagerImpl_POSIX<ImplClass>::_UnlockChipStack()
112112
chipDie();
113113
#endif
114114
}
115-
mChipStackIsLocked = false;
115+
mChipStackIsLocked = false;
116+
mChipStackLockOwnerThread = pthread_t();
116117
#endif
117118

118119
int err = pthread_mutex_unlock(&mChipStackLock);

0 commit comments

Comments
 (0)