projects
/
project
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5204f0
)
* libs/httpd: Fixed garbage collection
author
Steven Barth
<steven@midlink.org>
Wed, 2 Jul 2008 15:41:47 +0000
(15:41 +0000)
committer
Steven Barth
<steven@midlink.org>
Wed, 2 Jul 2008 15:41:47 +0000
(15:41 +0000)
libs/httpd/luasrc/httpd.lua
patch
|
blob
|
history
diff --git
a/libs/httpd/luasrc/httpd.lua
b/libs/httpd/luasrc/httpd.lua
index
dbbe4c6
..
541063c
100644
(file)
--- a/
libs/httpd/luasrc/httpd.lua
+++ b/
libs/httpd/luasrc/httpd.lua
@@
-31,7
+31,6
@@
local threadm = {}
local threadi = {}
local _meta = {__mode = "k"}
-setmetatable(threads, _meta)
setmetatable(threadm, _meta)
setmetatable(threadi, _meta)
@@
-110,6
+109,7
@@
function step()
local now = os.time()
if coroutine.status(thread) == "dead" then
threadc = threadc - 1
+ threads[client] = nil
elseif threadm[client] and threadm[client] + THREAD_TIMEOUT < now then
threads[client] = nil
threadc = threadc - 1
@@
-121,6
+121,7
@@
function step()
end
if idle then
+ collectgarbage()
socket.sleep(THREAD_IDLEWAIT)
end
end