summaryrefslogtreecommitdiff
path: root/src/script/squirrel.hpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-03 22:42:42 +0000
committerrubidium <rubidium@openttd.org>2009-02-03 22:42:42 +0000
commit1c30c8c801d2b4ecc6901069dcdfa8d0411aa1fd (patch)
tree4f0ff072e810fbda1bd6a01083ab7be1081bfdf3 /src/script/squirrel.hpp
parent101f55e65cd43daea211b26b5fe5666968a507f4 (diff)
downloadopenttd-1c30c8c801d2b4ecc6901069dcdfa8d0411aa1fd.tar.xz
(svn r15330) -Fix [FS#2597]: leaking of Squirrel when using circular references (by enabling the GC).
Diffstat (limited to 'src/script/squirrel.hpp')
-rw-r--r--src/script/squirrel.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/script/squirrel.hpp b/src/script/squirrel.hpp
index 39357bade..fc7472e96 100644
--- a/src/script/squirrel.hpp
+++ b/src/script/squirrel.hpp
@@ -101,6 +101,11 @@ public:
*/
bool Resume(int suspend = -1);
+ /**
+ * Tell the VM to do a garbage collection run.
+ */
+ void CollectGarbage();
+
void InsertResult(bool result);
void InsertResult(int result);