test_ok2/py/c-extension/greenlet
arigo 6aaca64290 [svn r37642] issue40 resolved
Thanks ghazel.  I fixed this by directly capturing ts_current in a local
variable instead of reloading it.  I also reviewed the code a bit and
found another place where ts_current could be used out of date.

--HG--
branch : trunk
2007-01-31 00:07:48 +01:00
..
README.txt [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
dummy_greenlet.py [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
greenlet.c [svn r37642] issue40 resolved 2007-01-31 00:07:48 +01:00
greenlet.h [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
setup.py [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
slp_platformselect.h [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
switch_amd64_unix.h [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
switch_ppc_macosx.h [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
switch_ppc_unix.h [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
switch_s390_unix.h [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
switch_sparc_sun_gcc.h [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
switch_x86_msvc.h [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
switch_x86_unix.h [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
test_generator.py [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
test_generator_nested.py [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
test_greenlet.py [svn r37642] issue40 resolved 2007-01-31 00:07:48 +01:00
test_remote.py [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00
test_throw.py [svn r37264] create the new development trunk 2007-01-24 15:24:01 +01:00

README.txt

This code is by Armin Rigo with the core pieces by Christian Tismer.
These pieces are:

- slp_platformselect.h
- switch_*.h, included from the previous one.

All additional credits for the general idea of stack switching also go to
Christian.  In other words, if it works it is thanks to Christian's work,
and if it crashes it is because of a bug of mine :-)


-- Armin