RosettaCodeData/Task/Mutex/Ada/mutex-1.adb
2026-04-30 12:34:36 -04:00

6 lines
110 B
Ada

protected type Mutex is
entry Seize;
procedure Release;
private
Owned : Boolean := False;
end Mutex;