aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorMichael Bebenita <[email protected]>2010-08-09 07:42:06 -0700
committerMichael Bebenita <[email protected]>2010-08-09 07:42:06 -0700
commit9ff6a3d031d2ffaf2863e2a866f7a96ed7ddd029 (patch)
treefc1d740c0715011adbf2169b9b0ad9845d7bc19b /src/Makefile
parentMade the runtime keep track of all live domains and print their state. (diff)
downloadrust-9ff6a3d031d2ffaf2863e2a866f7a96ed7ddd029.tar.xz
rust-9ff6a3d031d2ffaf2863e2a866f7a96ed7ddd029.zip
Added class to abstract away platform specific thread primitives.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 1d79a467..f8c891c2 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -245,7 +245,8 @@ BOOT_CMXS := $(BOOT_MLS:.ml=.cmx)
BOOT_OBJS := $(BOOT_MLS:.ml=.o)
BOOT_CMIS := $(BOOT_MLS:.ml=.cmi)
-RUNTIME_CS := rt/sync/spin_lock.cpp \
+RUNTIME_CS := rt/sync/sync.cpp \
+ rt/sync/spin_lock.cpp \
rt/sync/lock_free_queue.cpp \
rt/sync/condition_variable.cpp \
rt/rust.cpp \
@@ -279,7 +280,8 @@ RUNTIME_HDR := rt/globals.h \
rt/rust_message.h \
rt/circular_buffer.h \
rt/util/array_list.h \
- rt/util/hash_map.h
+ rt/util/hash_map.h \
+ rt/sync/sync.h
RUNTIME_INCS := -Irt/isaac -Irt/uthash
RUNTIME_OBJS := $(RUNTIME_CS:.cpp=$(CFG_OBJ_SUFFIX))