summaryrefslogtreecommitdiff
path: root/meta/3rd/OpenResty/ngx.semaphore.lua
blob: 66c45f6496b22b2c769b5edaf4f1af645942dee2 (plain)
1
2
3
4
5
6
7
ngx_semaphore={}
function ngx_semaphore.count(self) end
function ngx_semaphore.new(n) end
function ngx_semaphore.wait(self, seconds) end
function ngx_semaphore.post(self, n) end
ngx_semaphore.version="0.1.17"
return ngx_semaphore