RosettaCodeData/Task/Mutex/Ada/mutex-2.adb
2026-04-30 12:34:36 -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;