Author: Armin Rigo
Branch: c8-gil-like
Changeset: r1825:1621b474ec2b
Date: 2015-06-14 11:36 +0200
http://bitbucket.org/pypy/stmgc/changeset/1621b474ec2b/
Log:Finish porting duhton-c8
diff --git a/duhton-c8/duhton.c b/duhton-c8/duhton.c
--- a/duhton-c8/duhton.c
+++ b/duhton-c8/duhton.c
@@ -4,
Author: Armin Rigo
Branch: c8-gil-like
Changeset: r1824:15af88362d03
Date: 2015-06-14 11:36 +0200
http://bitbucket.org/pypy/stmgc/changeset/15af88362d03/
Log:compiling with _STM_NURSERY_ZEROED=1 in non-debug mode would not
actually clean up the nursery. Crash. Took a while to figure t
Author: Armin Rigo
Branch:
Changeset: r1826:ea1bad49a23b
Date: 2015-06-14 11:36 +0200
http://bitbucket.org/pypy/stmgc/changeset/ea1bad49a23b/
Log:compiling with _STM_NURSERY_ZEROED=1 in non-debug mode would not
actually clean up the nursery. Crash. Took a while to figure this
Author: Armin Rigo
Branch:
Changeset: r1827:664fb39b6441
Date: 2015-06-12 12:54 +0200
http://bitbucket.org/pypy/stmgc/changeset/664fb39b6441/
Log:improve
diff --git a/c7/gdb/gdb_stm.py b/c7/gdb/gdb_stm.py
--- a/c7/gdb/gdb_stm.py
+++ b/c7/gdb/gdb_stm.py
@@ -74,11 +74,13 @@
def thread_to_seg
Author: Armin Rigo
Branch: c8-gil-like
Changeset: r1828:367bbbec6707
Date: 2015-06-14 11:47 +0200
http://bitbucket.org/pypy/stmgc/changeset/367bbbec6707/
Log:Why build duhton-c8 with zeroed nursery?
diff --git a/duhton-c8/Makefile b/duhton-c8/Makefile
--- a/duhton-c8/Makefile
+++ b/duhton-c8
Author: Armin Rigo
Branch:
Changeset: r1830:ab54aa35b24a
Date: 2015-06-14 11:53 +0200
http://bitbucket.org/pypy/stmgc/changeset/ab54aa35b24a/
Log:hg merge c8-gil-like
Fixes the bad timings of a program that does many tiny external
calls. Previously, it would cause many tiny
Author: Armin Rigo
Branch: c8-gil-like
Changeset: r1829:6fc9b0ffaee0
Date: 2015-06-14 11:51 +0200
http://bitbucket.org/pypy/stmgc/changeset/6fc9b0ffaee0/
Log:Close ready-to-merge branch
___
pypy-commit mailing list
[email protected]
https://ma
Author: Amaury Forgeot d'Arc
Branch:
Changeset: r78088:30f7b6f0a467
Date: 2015-06-13 23:08 +0200
http://bitbucket.org/pypy/pypy/changeset/30f7b6f0a467/
Log:More operations are allowed when a stream is detached.
diff --git a/pypy/module/_io/interp_textio.py b/pypy/module/_io/interp_textio.py
Author: Amaury Forgeot d'Arc
Branch:
Changeset: r78089:c7298ea71c4d
Date: 2015-06-14 16:01 +0200
http://bitbucket.org/pypy/pypy/changeset/c7298ea71c4d/
Log:CPython issue #5700: flush() was not called in close() if
closefd=False.
diff --git a/pypy/module/_io/interp_fileio.py b/pypy/m
Author: Amaury Forgeot d'Arc
Branch:
Changeset: r78090:0117c2d4c183
Date: 2015-06-14 16:38 +0200
http://bitbucket.org/pypy/pypy/changeset/0117c2d4c183/
Log:CPython Issue #21802: The reader in BufferedRWPair now is closed
even when closing writer failed in BufferedRWPair.close()
diff
Author: Armin Rigo
Branch:
Changeset: r1831:9c72d7f52305
Date: 2015-06-14 17:59 +0200
http://bitbucket.org/pypy/stmgc/changeset/9c72d7f52305/
Log:Mostly untested: add here the support for atomic transactions
diff --git a/c8/stm/core.c b/c8/stm/core.c
--- a/c8/stm/core.c
+++ b/c8/stm/core.c
Author: Armin Rigo
Branch: stmgc-c8-gil-like
Changeset: r78092:55cbeb8df665
Date: 2015-06-14 18:05 +0200
http://bitbucket.org/pypy/pypy/changeset/55cbeb8df665/
Log:Use the new built-in atomic support
diff --git a/rpython/translator/stm/funcgen.py
b/rpython/translator/stm/funcgen.py
--- a/rp
Author: Armin Rigo
Branch: stmgc-c8-gil-like
Changeset: r78093:119c613c7c94
Date: 2015-06-14 17:07 +0100
http://bitbucket.org/pypy/pypy/changeset/119c613c7c94/
Log:Bump the maximum memory from 2.5 to 7.5 GB
diff --git a/rpython/translator/stm/src_stm/stm/core.h
b/rpython/translator/stm/src_
Author: Armin Rigo
Branch: stmgc-c8-gil-like
Changeset: r78091:3be5cbbb7313
Date: 2015-06-14 18:00 +0200
http://bitbucket.org/pypy/pypy/changeset/3be5cbbb7313/
Log:import stmgc/9c72d7f52305
diff --git a/rpython/translator/stm/src_stm/revision
b/rpython/translator/stm/src_stm/revision
--- a/
Author: Armin Rigo
Branch:
Changeset: r1832:7a87c63be4d2
Date: 2015-06-14 18:18 +0200
http://bitbucket.org/pypy/stmgc/changeset/7a87c63be4d2/
Log:This should be a no-op unless I'm missing something.
diff --git a/c8/stm/detach.c b/c8/stm/detach.c
--- a/c8/stm/detach.c
+++ b/c8/stm/detach.c
@
Author: Armin Rigo
Branch: stmgc-c8-gil-like
Changeset: r78094:c6856f2622dd
Date: 2015-06-14 18:21 +0200
http://bitbucket.org/pypy/pypy/changeset/c6856f2622dd/
Log:import stmgc/7a87c63be4d2. adapt the JIT
diff --git a/rpython/jit/backend/x86/assembler.py
b/rpython/jit/backend/x86/assembler.
Author: Amaury Forgeot d'Arc
Branch:
Changeset: r78095:2acc241fc909
Date: 2015-06-14 21:44 +0200
http://bitbucket.org/pypy/pypy/changeset/2acc241fc909/
Log:multiprocessing: Move the imports to module initialization, to avoid
a deadlock with the import lock.
diff --git a/pypy/module/
Author: Amaury Forgeot d'Arc
Branch:
Changeset: r78096:b31cf2e51d1b
Date: 2015-06-14 22:25 +0200
http://bitbucket.org/pypy/pypy/changeset/b31cf2e51d1b/
Log:Cffi Tweaks in tklib_build until we get access to TK_HEX_VERSION,
before we build the real library.
diff --git a/lib_pypy/_tkin
Author: Amaury Forgeot d'Arc
Branch:
Changeset: r78097:b1de7a251090
Date: 2015-06-14 22:28 +0200
http://bitbucket.org/pypy/pypy/changeset/b1de7a251090/
Log:Better add '..', for the case when dirname() is empty.
diff --git a/lib_pypy/_tkinter/tklib_build.py b/lib_pypy/_tkinter/tklib_build.py
Author: Amaury Forgeot d'Arc
Branch:
Changeset: r78098:7f1fa7382673
Date: 2015-06-14 22:30 +0200
http://bitbucket.org/pypy/pypy/changeset/7f1fa7382673/
Log:_tkinter: "const" some struct members to silence gcc warnings.
diff --git a/lib_pypy/_tkinter/tklib_build.py b/lib_pypy/_tkinter/tklib_
Author: Stefano Rivera
Branch:
Changeset: r2185:78ba2e4ab0ff
Date: 2015-06-14 19:08 -0700
http://bitbucket.org/cffi/cffi/changeset/78ba2e4ab0ff/
Log:Correctly locate py2.7 debug build extensions
diff --git a/testing/cffi1/test_zdist.py b/testing/cffi1/test_zdist.py
--- a/testing/cffi1/test_
21 matches
Mail list logo