RosettaCodeData/Task/Metered-concurrency/Ada/metered-concurrency-1.ada
2023-07-01 13:44:08 -04:00

9 lines
248 B
Ada

package Semaphores is
protected type Counting_Semaphore(Max : Positive) is
entry Acquire;
procedure Release;
function Count return Natural;
private
Lock_Count : Natural := 0;
end Counting_Semaphore;
end Semaphores;