We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc7a738 commit 3137936Copy full SHA for 3137936
src/domains/access.ml
@@ -10,7 +10,7 @@ module M = Messages
10
11
let is_ignorable_type (t: typ): bool =
12
match t with
13
- | TNamed ({ tname = "atomic_t" | "pthread_mutex_t" | "pthread_rwlock_t" | "spinlock_t"; _ }, _) -> true
+ | TNamed ({ tname = "atomic_t" | "pthread_mutex_t" | "pthread_rwlock_t" | "spinlock_t" | "pthread_cond_t"; _ }, _) -> true
14
| TComp ({ cname = "lock_class_key"; _ }, _) -> true
15
| TInt (IInt, attr) when hasAttribute "mutex" attr -> true
16
| t when hasAttribute "atomic" (typeAttrs t) -> true (* C11 _Atomic *)
0 commit comments