diff --git a/src/libcore/rt/local.rs b/src/libcore/rt/local.rs new file mode 100644 index 0000000000000000000000000000000000000000..ec54bcb99dd7f1a47459d3e857db31cdf3d7d8b2 --- /dev/null +++ b/src/libcore/rt/local.rs @@ -0,0 +1,17 @@ +// Copyright 2013 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +pub trait Local { + fn put_local(value: ~Self); + fn take_local() -> ~Self; + fn exists() -> bool; + fn borrow(f: &fn(&mut Self)); + fn unsafe_borrow() -> *mut Self; +} diff --git a/src/libcore/rt/mod.rs b/src/libcore/rt/mod.rs index 208a6de46e822b3698cd8037ad8eceec4191a53d..37ac6ad3365c3dde8c897cca4a681afbb7f6494f 100644 --- a/src/libcore/rt/mod.rs +++ b/src/libcore/rt/mod.rs @@ -81,6 +81,10 @@ #[path = "uv/mod.rs"] pub mod uv; +/// The Local trait for types that are accessible via thread-local +/// or task-local storage. +pub mod local; + // FIXME #5248: The import in `sched` doesn't resolve unless this is pub! /// Bindings to pthread/windows thread-local storage. pub mod thread_local_storage;