Skip to content

Commit 1a68c18

Browse files
committed
docs
1 parent 630ec72 commit 1a68c18

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

c/cert/src/rules/CON31-C/DoNotAllowAMutexToGoOutOfScopeWhileLocked.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ This query implements the CERT-C rule CON31-C:
55
> Do not destroy a mutex while it is locked
66
77

8-
98
## Description
109

1110
Mutexes are used to protect shared data structures being concurrently accessed. If a mutex is destroyed while a thread is blocked waiting for that mutex, [critical sections](https://wiki.sei.cmu.edu/confluence/display/c/BB.+Definitions#BB.Definitions-criticalsections) and shared data are no longer protected.

c/cert/src/rules/CON31-C/DoNotDestroyAMutexWhileItIsLocked.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ This query implements the CERT-C rule CON31-C:
55
> Do not destroy a mutex while it is locked
66
77

8-
98
## Description
109

1110
Mutexes are used to protect shared data structures being concurrently accessed. If a mutex is destroyed while a thread is blocked waiting for that mutex, [critical sections](https://wiki.sei.cmu.edu/confluence/display/c/BB.+Definitions#BB.Definitions-criticalsections) and shared data are no longer protected.

0 commit comments

Comments
 (0)