diff options
author | Josh Matthews <josh@joshmatthews.net> | 2014-03-22 01:33:54 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2014-03-22 01:33:54 -0400 |
commit | 25d3c9078e4970574a73a1003df3b61c666cb60c (patch) | |
tree | e0ee965e9d7acd375dc59e2d46b37329c04b98aa /src/components/main/layout/layout_task.rs | |
parent | ee88817461ea80f6e883626100d4ccf22f9796a5 (diff) | |
download | servo-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.rs | 2 |
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 }; |