Skip to content

Commit 6caafab

Browse files
Typo
1 parent 3ef29c5 commit 6caafab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/analyses/pthreadBarriers.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ struct
133133
if Barriers.is_empty may then raise Analyses.Deadcode;
134134
(may, must)
135135
| BarrierInit { barrier; attr; count } ->
136-
let multitprocess = not @@ Queries.AD.is_null @@ man.ask (Queries.MayPointTo attr) in
137-
if multitprocess then M.warn "Barrier initialized with a non-NULL attr argument. Handled as if PTHREAD_PROCESS_SHARED potentially set.";
136+
let multiprocess = not @@ Queries.AD.is_null @@ man.ask (Queries.MayPointTo attr) in
137+
if multiprocess then M.warn "Barrier initialized with a non-NULL attr argument. Handled as if PTHREAD_PROCESS_SHARED potentially set.";
138138
let count = man.ask (Queries.EvalInt count) in
139-
let publish_one b = man.sideg b (multitprocess, count, Waiters.bot ()) in
139+
let publish_one b = man.sideg b (multiprocess, count, Waiters.bot ()) in
140140
let barriers = possible_vinfos (Analyses.ask_of_man man) barrier in
141141
List.iter publish_one barriers;
142142
man.local

0 commit comments

Comments
 (0)