diff options
| author | Michael Bebenita <[email protected]> | 2010-09-10 01:21:29 -0700 |
|---|---|---|
| committer | Michael Bebenita <[email protected]> | 2010-09-10 14:38:31 -0700 |
| commit | a493350eb5ab38ba8a6563f3eb4a090d257b0d3a (patch) | |
| tree | dc984eaa28a55de9f05db0b961a0e67f80ca35ef /src/Makefile | |
| parent | Added lock_and_signal::signal_all(), and made the rust_kernel::join() use wai... (diff) | |
| download | rust-a493350eb5ab38ba8a6563f3eb4a090d257b0d3a.tar.xz rust-a493350eb5ab38ba8a6563f3eb4a090d257b0d3a.zip | |
Cleanup, refactoring, and some runtime tests.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 3fbd7799..a524739a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -257,6 +257,7 @@ RUNTIME_CS := rt/sync/timer.cpp \ rt/rust_comm.cpp \ rt/rust_dom.cpp \ rt/rust_task.cpp \ + rt/rust_task_list.cpp \ rt/rust_proxy.cpp \ rt/rust_chan.cpp \ rt/rust_port.cpp \ @@ -270,6 +271,7 @@ RUNTIME_CS := rt/sync/timer.cpp \ rt/rust_kernel.cpp \ rt/memory_region.cpp \ rt/test/rust_test_harness.cpp \ + rt/test/rust_test_runtime.cpp \ rt/test/rust_test_util.cpp RUNTIME_HDR := rt/globals.h \ @@ -281,6 +283,7 @@ RUNTIME_HDR := rt/globals.h \ rt/rust_port.h \ rt/rust_dom.h \ rt/rust_task.h \ + rt/rust_task_list.h \ rt/rust_proxy.h \ rt/rust_log.h \ rt/rust_message.h \ @@ -297,6 +300,7 @@ RUNTIME_HDR := rt/globals.h \ rt/memory_region.h \ rt/memory.h \ rt/test/rust_test_harness.h \ + rt/test/rust_test_runtime.h \ rt/test/rust_test_util.h RUNTIME_INCS := -Irt/isaac -Irt/uthash |