[pypy-commit] stmgc c7: tweaks

2014-01-04 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r595:8536ef3473a5 Date: 2014-01-03 14:08 +0100 http://bitbucket.org/pypy/stmgc/changeset/8536ef3473a5/ Log:tweaks diff --git a/c7/core.c b/c7/core.c --- a/c7/core.c +++ b/c7/core.c @@ -19,6 +19,10 @@ #define MAP_PAGES_FLAGS (MAP_PRIVATE | MAP_ANO

[pypy-commit] stmgc c7: Initial draft of this document, based on similar drafts from c5 and c6

2014-01-04 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r596:cdcd428aa614 Date: 2014-01-04 11:38 +0100 http://bitbucket.org/pypy/stmgc/changeset/cdcd428aa614/ Log:Initial draft of this document, based on similar drafts from c5 and c6 but for c7. diff --git a/c7/README.txt b/c7/README.txt new file m

[pypy-commit] stmgc c7: Draft the GC paragraph.

2014-01-04 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r597:6bbdefa01606 Date: 2014-01-04 12:00 +0100 http://bitbucket.org/pypy/stmgc/changeset/6bbdefa01606/ Log:Draft the GC paragraph. diff --git a/c7/README.txt b/c7/README.txt --- a/c7/README.txt +++ b/c7/README.txt @@ -151,4 +151,37 @@ Object creation

[pypy-commit] stmgc c7: Updates

2014-01-04 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r598:b327979e2f33 Date: 2014-01-04 15:42 +0100 http://bitbucket.org/pypy/stmgc/changeset/b327979e2f33/ Log:Updates diff --git a/c7/README.txt b/c7/README.txt --- a/c7/README.txt +++ b/c7/README.txt @@ -153,7 +153,12 @@ draft: -- pages containing

[pypy-commit] stmgc c7: Use checkfence to check a particular lockfree subalgorithm used in c7/core.c

2014-01-04 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r599:09c6e26a06fe Date: 2014-01-04 16:30 +0100 http://bitbucket.org/pypy/stmgc/changeset/09c6e26a06fe/ Log:Use checkfence to check a particular lockfree subalgorithm used in c7/core.c diff --git a/checkfence/c7/run b/checkfence/c7/run new file

[pypy-commit] stmgc c7: Check both the x86 version and the general version.

2014-01-04 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r600:66e0f7f7267c Date: 2014-01-04 16:54 +0100 http://bitbucket.org/pypy/stmgc/changeset/66e0f7f7267c/ Log:Check both the x86 version and the general version. diff --git a/checkfence/c7/unshare_page.c b/checkfence/c7/unshare_page.c --- a/checkfence/c7

[pypy-commit] pypy default: fix numpy int coerce cases

2014-01-04 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r68585:0dcf482a5cb8 Date: 2014-01-04 13:34 -0500 http://bitbucket.org/pypy/pypy/changeset/0dcf482a5cb8/ Log:fix numpy int coerce cases diff --git a/pypy/module/micronumpy/test/test_scalar.py b/pypy/module/micronumpy/test/test_scalar.py --- a/pypy/mod