diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-12-29 15:03:01 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-01 22:02:59 -0800 |
| commit | f3a7ec7028c76b3a1c6051131328f372b068e33a (patch) | |
| tree | dce13e4152a6d9d988042c4be77720d14dcc62c0 /src/libstd/io/buffered.rs | |
| parent | cd614164e692cca3a1460737f581fcb6d4630baf (diff) | |
| download | rust-f3a7ec7028c76b3a1c6051131328f372b068e33a.tar.gz rust-f3a7ec7028c76b3a1c6051131328f372b068e33a.zip | |
std: Second pass stabilization of sync
This pass performs a second pass of stabilization through the `std::sync`
module, avoiding modules/types that are being handled in other PRs (e.g.
mutexes, rwlocks, condvars, and channels).
The following items are now stable
* `sync::atomic`
* `sync::atomic::ATOMIC_BOOL_INIT` (was `INIT_ATOMIC_BOOL`)
* `sync::atomic::ATOMIC_INT_INIT` (was `INIT_ATOMIC_INT`)
* `sync::atomic::ATOMIC_UINT_INIT` (was `INIT_ATOMIC_UINT`)
* `sync::Once`
* `sync::ONCE_INIT`
* `sync::Once::call_once` (was `doit`)
* C == `pthread_once(..)`
* Boost == `call_once(..)`
* Windows == `InitOnceExecuteOnce`
* `sync::Barrier`
* `sync::Barrier::new`
* `sync::Barrier::wait` (now returns a `bool`)
* `sync::Semaphore::new`
* `sync::Semaphore::acquire`
* `sync::Semaphore::release`
The following items remain unstable
* `sync::SemaphoreGuard`
* `sync::Semaphore::access` - it's unclear how this relates to the poisoning
story of mutexes.
* `sync::TaskPool` - the semantics of a failing task and whether a thread is
re-attached to a thread pool are somewhat unclear, and the
utility of this type in `sync` is question with respect to
the jobs of other primitives. This type will likely become
stable or move out of the standard library over time.
* `sync::Future` - futures as-is have yet to be deeply re-evaluated with the
recent core changes to Rust's synchronization story, and will
likely become stable in the future but are unstable until
that time comes.
[breaking-change]
Diffstat (limited to 'src/libstd/io/buffered.rs')
| -rw-r--r-- | src/libstd/io/buffered.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libstd/io/buffered.rs b/src/libstd/io/buffered.rs index c5405601048..aa05c65ce76 100644 --- a/src/libstd/io/buffered.rs +++ b/src/libstd/io/buffered.rs @@ -22,7 +22,6 @@ use result::Result::{Ok, Err}; use slice::{SliceExt}; use slice; use vec::Vec; -use kinds::{Send,Sync}; /// Wraps a Reader and buffers input from it /// @@ -52,11 +51,6 @@ pub struct BufferedReader<R> { cap: uint, } - -unsafe impl<R: Send> Send for BufferedReader<R> {} -unsafe impl<R: Send+Sync> Sync for BufferedReader<R> {} - - impl<R: Reader> BufferedReader<R> { /// Creates a new `BufferedReader` with the specified buffer capacity pub fn with_capacity(cap: uint, inner: R) -> BufferedReader<R> { |
