luci-0Ã.10: merge r7332
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 22 Jul 2011 14:00:14 +0000 (14:00 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 22 Jul 2011 14:00:14 +0000 (14:00 +0000)
libs/lucid/luasrc/lucid.lua

index 5d62a6c..7ecdf2a 100644 (file)
@@ -136,7 +136,6 @@ function run()
                        end
                elseif stat == 0 then
                        ifaddrs = nixio.getifaddrs()
-                       collectgarbage("collect")
                end
                
                for _, cb in ipairs(tickt) do
@@ -231,6 +230,8 @@ function create_process(threadcb, waitcb)
        if threadlimit and tcount >= threadlimit then
                nixio.syslog("warning", "Cannot create thread: process limit reached")
                return nil
+       else
+               collectgarbage("collect")
        end
        local pid, code, err = nixio.fork()
        if pid and pid ~= 0 then