aboutsummaryrefslogtreecommitdiff
path: root/src/lib/sys.rs
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-11-02 11:11:58 -0700
committerGraydon Hoare <[email protected]>2010-11-02 11:11:58 -0700
commitda13c508d83032ca13679e1e122e96d25ac23283 (patch)
tree51c3d466dfedf3ad8e21b56c4769325561b3d650 /src/lib/sys.rs
parentUn-XFAIL self tests on Darwin (diff)
downloadarchived-rust-da13c508d83032ca13679e1e122e96d25ac23283.tar.xz
archived-rust-da13c508d83032ca13679e1e122e96d25ac23283.zip
First pass on splitting stratum and opacity off of effects. WIP.
Diffstat (limited to 'src/lib/sys.rs')
-rw-r--r--src/lib/sys.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/sys.rs b/src/lib/sys.rs
index 90e5cc49..77eab003 100644
--- a/src/lib/sys.rs
+++ b/src/lib/sys.rs
@@ -10,13 +10,13 @@ native "rust" mod rustrt {
export size_of;
export align_of;
export refcount;
- export gc;
+ export do_gc;
fn last_os_error() -> str;
fn size_of[T]() -> uint;
fn align_of[T]() -> uint;
fn refcount[T](@T t) -> uint;
- fn gc();
+ fn do_gc();
fn unsupervise();
}