[pypy-commit] stmgc c7: update demo makefile

Remi Meier noreply at buildbot.pypy.org
Wed Jan 22 14:41:35 CET 2014


Author: Remi Meier
Branch: c7
Changeset: r668:95fad5b3c052
Date: 2014-01-22 14:40 +0100
http://bitbucket.org/pypy/stmgc/changeset/95fad5b3c052/

Log:	update demo makefile

diff --git a/c7/Makefile b/c7/Makefile
--- a/c7/Makefile
+++ b/c7/Makefile
@@ -14,9 +14,9 @@
 	rm -f $(BUILD_EXE) $(DEBUG_EXE) $(RELEASE_EXE)
 
 
-H_FILES = core.h list.h pagecopy.h reader_writer_lock.h
+H_FILES = core.h list.h pagecopy.h reader_writer_lock.h stmsync.h pages.h nursery.h
 
-C_FILES = core.c list.c pagecopy.c reader_writer_lock.c
+C_FILES = core.c list.c pagecopy.c reader_writer_lock.c stmsync.c pages.c nursery.c
 
 DEBUG = -g 
 
diff --git a/c7/demo2.c b/c7/demo2.c
--- a/c7/demo2.c
+++ b/c7/demo2.c
@@ -5,7 +5,7 @@
 #include <semaphore.h>
 
 #include "core.h"
-
+#include "stmsync.h"
 
 #define LIST_LENGTH 6000
 #define BUNCH       400


More information about the pypy-commit mailing list