RosettaCodeData/Task/Mutex/Ada/mutex-1.adb

7 lines
110 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
protected type Mutex is
entry Seize;
procedure Release;
private
Owned : Boolean := False;
end Mutex;