Author: Remi Meier <[email protected]>
Branch: c8-private-pages
Changeset: r1547:5b9a7b8de4af
Date: 2015-01-19 15:18 +0100
http://bitbucket.org/pypy/stmgc/changeset/5b9a7b8de4af/

Log:    fix duhton c7

diff --git a/duhton/Makefile b/duhton/Makefile
--- a/duhton/Makefile
+++ b/duhton/Makefile
@@ -6,7 +6,7 @@
 COMMON = -pthread -lrt -g -Wall
 
 
-all: duhton_debug duhton
+all: duhton_debug duhton duhton_release
 
 duhton: *.c *.h $(C7SOURCES) $(C7HEADERS)
        clang $(COMMON) -O2 -o duhton *.c ../c7/stmgc.c
diff --git a/duhton/object.c b/duhton/object.c
--- a/duhton/object.c
+++ b/duhton/object.c
@@ -45,7 +45,7 @@
     abort();
 }
 void stmcb_commit_soon(void) { }
-
+long stmcb_obj_supports_cards(struct object_s *obj) {return 0;}
 
 
 
diff --git a/duhton/transaction.c b/duhton/transaction.c
--- a/duhton/transaction.c
+++ b/duhton/transaction.c
@@ -187,7 +187,6 @@
 
     }
 
-    stm_flush_timing(&stm_thread_local, 1);
     stm_rewind_jmp_leaveframe(&stm_thread_local, &rjbuf);
     stm_unregister_thread_local(&stm_thread_local);
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to