about summary refs log tree commit diff
path: root/src/libstd/std.rc
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-06-16 15:21:08 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-06-16 15:21:08 -0700
commit0276a3376bd18b5acd2a5daaca6167bb1d9bc2d9 (patch)
tree4f2378c00b4c41a981e63dd331d833330a88f28d /src/libstd/std.rc
parent69447e90021d7a35968ba32a8755a1be7e9d2a4c (diff)
downloadrust-0276a3376bd18b5acd2a5daaca6167bb1d9bc2d9.tar.gz
rust-0276a3376bd18b5acd2a5daaca6167bb1d9bc2d9.zip
Revert "Moved arc to libstd and added an arc that allows shared mutable state through mutual exclusion."
This reverts commit 015527b0cee0bc5cfaac8dd610035a0c1b2f8ea6.
Diffstat (limited to 'src/libstd/std.rc')
-rw-r--r--src/libstd/std.rc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/std.rc b/src/libstd/std.rc
index 2effb04cd3f..10b008d07c8 100644
--- a/src/libstd/std.rc
+++ b/src/libstd/std.rc
@@ -19,7 +19,7 @@ export net, net_tcp;
 export uv, uv_ll, uv_iotask, uv_global_loop;
 export c_vec, util, timer;
 export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap;
-export rope, arena, par;
+export rope, arena, arc, par;
 export ebml, dbg, getopts, json, rand, sha1, term, time, prettyprint;
 export test, tempfile, serialization;
 export cmp;
@@ -69,6 +69,7 @@ mod term;
 mod time;
 mod prettyprint;
 mod arena;
+mod arc;
 mod par;
 mod cmp;