[pypy-commit] pypy stacklet: Fix.

arigo noreply at buildbot.pypy.org
Mon Aug 8 17:08:46 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: stacklet
Changeset: r46371:2920f0ba771c
Date: 2011-08-08 15:04 +0000
http://bitbucket.org/pypy/pypy/changeset/2920f0ba771c/

Log:	Fix.

diff --git a/pypy/rlib/_stacklet_asmgcc.py b/pypy/rlib/_stacklet_asmgcc.py
--- a/pypy/rlib/_stacklet_asmgcc.py
+++ b/pypy/rlib/_stacklet_asmgcc.py
@@ -264,10 +264,8 @@
 
     def destroy(self, thrd, suspstack):
         h = suspstack.handle
-        a = suspstack.anchor
         suspstack.handle = _c.null_handle
         _c.destroy(thrd, h)
-        lltype.free(a, flavor='raw')
 
     def is_empty_handle(self, suspstack):
         return not suspstack


More information about the pypy-commit mailing list