RosettaCodeData/Task/Mutex/Ada/mutex-2.ada
2023-07-01 13:44:08 -04:00

10 lines
183 B
Ada

protected body Mutex is
entry Seize when not Owned is
begin
Owned := True;
end Seize;
procedure Release is
begin
Owned := False;
end Release;
end Mutex;