RosettaCodeData/Task/Metered-concurrency/Ada/metered-concurrency-1.ada
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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;