aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/util/concurrentmap.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove ConcurrentHashMap.Cameron Zwarich2014-05-291-518/+0
| | | | | ConcurrentHashMap is unused and has a lot of uses of transmute_mut, so it's best to remove it.
* Update Rust.Ms2ger2014-05-221-6/+6
|
* Use Vec in concurrentmap.rs.Ms2ger2014-05-061-37/+36
|
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-13/+13
| | | | | | April 10, 2014. The main changes are to privacy, to work around the issues with incorrect bounds on the libstd `Arc<Mutex<T>>`, and the various API changes strewn throughout the libraries.
* Fix tests.Josh Matthews2014-04-041-1/+2
|
* Upgrade rust.Ms2ger2014-04-041-6/+6
|
* Rust upgrade for new master rebaseLars Bergstrom2014-03-181-2/+2
|
* Rust upgradesLars Bergstrom2014-03-181-23/+24
|
* util: Implement a Doug Lea-style concurrent hash table.Patrick Walton2014-01-301-0/+517
This will be used for leaf sets and interned strings.