summaryrefslogtreecommitdiffhomepage
path: root/libs/core
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2009-07-10 16:39:30 +0000
committerSteven Barth <steven@midlink.org>2009-07-10 16:39:30 +0000
commit7ba12e9c5eafd809237fa69464e8b601926e9513 (patch)
tree1ffb90f2a9e2034ab209953d86f39a88668d91db /libs/core
parent128437f67103c980a8c963bf2510fe38ba1f4e54 (diff)
Move memory limit to lucid, reincrease thread limit
Diffstat (limited to 'libs/core')
-rw-r--r--libs/core/luasrc/init.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/core/luasrc/init.lua b/libs/core/luasrc/init.lua
index 3297901ac..dc91a36a0 100644
--- a/libs/core/luasrc/init.lua
+++ b/libs/core/luasrc/init.lua
@@ -26,11 +26,6 @@ limitations under the License.
local require = require
--- Set memory limit if supported
-if _G.set_memory_limit then
- set_memory_limit(1024 * 1024 * 1.5)
-end
-
-- Make sure that bitlib is loaded
if not _G.bit then
_G.bit = require "bit"