aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/main/layout/layout_task.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2014-03-22 01:33:54 -0400
committerJosh Matthews <josh@joshmatthews.net>2014-03-22 01:33:54 -0400
commit25d3c9078e4970574a73a1003df3b61c666cb60c (patch)
treee0ee965e9d7acd375dc59e2d46b37329c04b98aa /src/components/main/layout/layout_task.rs
parentee88817461ea80f6e883626100d4ccf22f9796a5 (diff)
downloadservo-25d3c9078e4970574a73a1003df3b61c666cb60c.tar.gz
servo-25d3c9078e4970574a73a1003df3b61c666cb60c.zip
Revert "Set a name for WorkQueue tasks (fixes #1830)"
This reverts commit f1394e3ffcd5ce97f307a38237ca05b1808ad71f.
Diffstat (limited to 'src/components/main/layout/layout_task.rs')
-rw-r--r--src/components/main/layout/layout_task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/main/layout/layout_task.rs b/src/components/main/layout/layout_task.rs
index b9050816668..28c305666ae 100644
--- a/src/components/main/layout/layout_task.rs
+++ b/src/components/main/layout/layout_task.rs
@@ -290,7 +290,7 @@ impl LayoutTask {
let local_image_cache = MutexArc::new(LocalImageCache(image_cache_task.clone()));
let screen_size = Size2D(Au(0), Au(0));
let parallel_traversal = if opts.layout_threads != 1 {
- Some(WorkQueue::new("LayoutWorker", opts.layout_threads, ptr::mut_null()))
+ Some(WorkQueue::new(opts.layout_threads, ptr::mut_null()))
} else {
None
};