Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove collections::list::List #13183

Merged
merged 3 commits into from
Mar 29, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions src/libarena/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@

extern crate collections;

use collections::list::{List, Cons, Nil};

use std::cast::{transmute, transmute_mut, transmute_mut_region};
use std::cast;
use std::cell::{Cell, RefCell};
Expand Down Expand Up @@ -87,7 +85,7 @@ pub struct Arena {
// access the head.
priv head: Chunk,
priv copy_head: Chunk,
priv chunks: RefCell<@List<Chunk>>,
priv chunks: RefCell<Vec<Chunk>>,
}

impl Arena {
Expand All @@ -99,7 +97,7 @@ impl Arena {
Arena {
head: chunk(initial_size, false),
copy_head: chunk(initial_size, true),
chunks: RefCell::new(@Nil),
chunks: RefCell::new(Vec::new()),
}
}
}
Expand All @@ -117,7 +115,7 @@ impl Drop for Arena {
fn drop(&mut self) {
unsafe {
destroy_chunk(&self.head);
for chunk in self.chunks.get().iter() {
for chunk in self.chunks.borrow().iter() {
if !chunk.is_copy.get() {
destroy_chunk(chunk);
}
Expand Down Expand Up @@ -179,7 +177,7 @@ impl Arena {
fn alloc_copy_grow(&mut self, n_bytes: uint, align: uint) -> *u8 {
// Allocate a new chunk.
let new_min_chunk_size = cmp::max(n_bytes, self.chunk_size());
self.chunks.set(@Cons(self.copy_head.clone(), self.chunks.get()));
self.chunks.borrow_mut().push(self.copy_head.clone());
self.copy_head =
chunk(num::next_power_of_two(new_min_chunk_size + 1u), true);

Expand Down Expand Up @@ -219,7 +217,7 @@ impl Arena {
-> (*u8, *u8) {
// Allocate a new chunk.
let new_min_chunk_size = cmp::max(n_bytes, self.chunk_size());
self.chunks.set(@Cons(self.head.clone(), self.chunks.get()));
self.chunks.borrow_mut().push(self.head.clone());
self.head =
chunk(num::next_power_of_two(new_min_chunk_size + 1u), false);

Expand Down
2 changes: 0 additions & 2 deletions src/libcollections/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ pub use deque::Deque;
pub use dlist::DList;
pub use enum_set::EnumSet;
pub use hashmap::{HashMap, HashSet};
pub use list::List;
pub use lru_cache::LruCache;
pub use priority_queue::PriorityQueue;
pub use ringbuf::RingBuf;
Expand All @@ -47,7 +46,6 @@ pub mod deque;
pub mod dlist;
pub mod enum_set;
pub mod hashmap;
pub mod list;
pub mod lru_cache;
pub mod priority_queue;
pub mod ringbuf;
Expand Down
237 changes: 0 additions & 237 deletions src/libcollections/list.rs

This file was deleted.

4 changes: 2 additions & 2 deletions src/libgreen/sched.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1473,7 +1473,7 @@ mod test {
let mut handle = pool.spawn_sched();
handle.send(PinnedTask(pool.task(TaskOpts::new(), proc() {
unsafe {
let mut guard = LOCK.lock();
let guard = LOCK.lock();

start_tx.send(());
guard.wait(); // block the scheduler thread
Expand Down Expand Up @@ -1509,7 +1509,7 @@ mod test {
child_tx.send(20);
pingpong(&parent_rx, &child_tx);
unsafe {
let mut guard = LOCK.lock();
let guard = LOCK.lock();
guard.signal(); // wakeup waiting scheduler
guard.wait(); // wait for them to grab the lock
}
Expand Down
3 changes: 1 addition & 2 deletions src/librustc/middle/typeck/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ use util::nodemap::{DefIdMap, FnvHashMap};

use std::cell::RefCell;
use std::rc::Rc;
use collections::List;
use syntax::codemap::Span;
use syntax::print::pprust::*;
use syntax::{ast, ast_map, abi};
Expand Down Expand Up @@ -327,7 +326,7 @@ pub fn require_same_types(tcx: &ty::ctxt,

// a list of mapping from in-scope-region-names ("isr") to the
// corresponding ty::Region
pub type isr_alist = @List<(ty::BoundRegion, ty::Region)>;
pub type isr_alist = @Vec<(ty::BoundRegion, ty::Region)>;

trait get_region<'a, T:'static> {
fn get(&'a self, br: ty::BoundRegion) -> ty::Region;
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2335,7 +2335,7 @@ mod tests {

#[test]
fn test_counter_from_iter() {
let mut it = count(0, 5).take(10);
let it = count(0, 5).take(10);
let xs: ~[int] = FromIterator::from_iterator(it);
assert_eq!(xs, ~[0, 5, 10, 15, 20, 25, 30, 35, 40, 45]);
}
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3218,7 +3218,7 @@ mod tests {
let data = ~"ประเทศไทย中";
let mut cpy = data.clone();
let other = "abc";
let mut it = other.chars();
let it = other.chars();
cpy.extend(it);
assert_eq!(cpy, data + other);
}
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/unstable/mutex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ mod test {
#[test]
fn destroy_immediately() {
unsafe {
let mut m = StaticNativeMutex::new();
let m = StaticNativeMutex::new();
m.destroy();
}
}
Expand Down
6 changes: 5 additions & 1 deletion src/test/bench/task-perf-alloc-unwind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,16 @@
extern crate collections;
extern crate time;

use collections::list::{List, Cons, Nil};
use time::precise_time_s;
use std::os;
use std::task;
use std::vec;

#[deriving(Clone)]
enum List<T> {
Nil, Cons(T, @List<T>)
}

enum UniqueList {
ULNil, ULCons(~UniqueList)
}
Expand Down
Loading